Fix applying Compose compiler plugin for K/N All changes detected by BCV are from stubs targets that were generated without applying Compose compiler plugin and might be ignored Relnote: N/A Test: N/A Change-Id: I678fdd798debe2ecd1d4732b9877b50155a7a9fd
diff --git a/buildSrc/private/src/main/kotlin/androidx/build/AndroidXComposeImplPlugin.kt b/buildSrc/private/src/main/kotlin/androidx/build/AndroidXComposeImplPlugin.kt index b9e7ec6..901a3e0 100644 --- a/buildSrc/private/src/main/kotlin/androidx/build/AndroidXComposeImplPlugin.kt +++ b/buildSrc/private/src/main/kotlin/androidx/build/AndroidXComposeImplPlugin.kt
@@ -24,12 +24,15 @@ import org.gradle.api.Project import org.gradle.api.artifacts.type.ArtifactTypeDefinition import org.gradle.api.attributes.Attribute +import org.gradle.api.file.FileCollection import org.gradle.api.tasks.bundling.Zip import org.gradle.kotlin.dsl.create import org.jetbrains.kotlin.gradle.plugin.CompilerPluginConfig import org.jetbrains.kotlin.gradle.plugin.KotlinBasePluginWrapper import org.jetbrains.kotlin.gradle.plugin.SubpluginOption import org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompile +import org.jetbrains.kotlin.gradle.tasks.AbstractKotlinNativeCompile +import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask const val zipComposeReportsTaskName = "zipComposeCompilerReports" const val zipComposeMetricsTaskName = "zipComposeCompilerMetrics" @@ -185,13 +188,13 @@ val enableMetrics = project.enableComposeCompilerMetrics() val enableReports = project.enableComposeCompilerReports() - val compileTasks = project.tasks.withType(AbstractKotlinCompile::class.java) + val compileTasks = project.tasks.withType(KotlinCompilationTask::class.java) compileTasks.configureEach { compile -> compile.inputs.property("composeMetricsEnabled", enableMetrics) compile.inputs.property("composeReportsEnabled", enableReports) - compile.pluginClasspath.from(kotlinPluginProvider.get()) + compile.applyPlugin(kotlinPluginProvider.get()) compile.enableFeatureFlag(ComposeFeatureFlag.OptimizeNonSkippingGroups) compile.enableFeatureFlag(ComposeFeatureFlag.PausableComposition) @@ -228,20 +231,32 @@ } } -private fun AbstractKotlinCompile<*>.addPluginOption( +private fun KotlinCompilationTask<*>.applyPlugin(plugins: FileCollection) = + when (this) { + is AbstractKotlinCompile<*> -> pluginClasspath.from(plugins) + is AbstractKotlinNativeCompile<*, *> -> compilerPluginClasspath = plugins + else -> throw IllegalStateException("Unsupported Kotlin compilation task type") + } + +private fun KotlinCompilationTask<*>.addPluginArgument(pluginId: String, option: SubpluginOption) = + when (this) { + is AbstractKotlinCompile<*> -> + pluginOptions.add(CompilerPluginConfig().apply { addPluginArgument(pluginId, option) }) + is AbstractKotlinNativeCompile<*, *> -> + compilerPluginOptions.addPluginArgument(pluginId, option) + else -> throw IllegalStateException("Unsupported Kotlin compilation task type") + } + +private fun KotlinCompilationTask<*>.addPluginOption( composeCompileOptions: ComposeCompileOptions, value: String, ) = - pluginOptions.add( - CompilerPluginConfig().apply { - addPluginArgument( - composeCompileOptions.pluginId, - SubpluginOption(composeCompileOptions.key, value), - ) - } + addPluginArgument( + pluginId = composeCompileOptions.pluginId, + option = SubpluginOption(composeCompileOptions.key, value), ) -private fun AbstractKotlinCompile<*>.enableFeatureFlag(featureFlag: ComposeFeatureFlag) { +private fun KotlinCompilationTask<*>.enableFeatureFlag(featureFlag: ComposeFeatureFlag) { addPluginOption(ComposeCompileOptions.FeatureFlagOption, featureFlag.featureName) }
diff --git a/compose/animation/animation-core/bcv/native/current.ignore b/compose/animation/animation-core/bcv/native/current.ignore new file mode 100644 index 0000000..ed0d2aff --- /dev/null +++ b/compose/animation/animation-core/bcv/native/current.ignore
@@ -0,0 +1,40 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>, kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>, kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A>, #A?, kotlin/Function1<#A, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A>, #A?, kotlin/String, kotlin/Function1<#A, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createDeferredAnimation(androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createTransitionAnimation(#B, #B, androidx.compose.animation.core/FiniteAnimationSpec<#B>, androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createChildTransitionInternal(#B, #B, kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/rememberTransition(androidx.compose.animation.core/TransitionState<#A>, kotlin/String?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/updateTransition(#A, kotlin/String?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/updateTransition(androidx.compose.animation.core/MutableTransitionState<#A>, kotlin/String?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp>, kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp>, kotlin/String, kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Float, kotlin/String, kotlin/Function1<kotlin/Float, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int>, kotlin/Function1<kotlin/Int, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int>, kotlin/String, kotlin/Function1<kotlin/Int, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset>, kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset>, kotlin/String, kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize>, kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize>, kotlin/String, kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset>, kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset>, kotlin/String, kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect>, kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect>, kotlin/String, kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size>, kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size>, kotlin/String, kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>?) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/rememberInfiniteTransition() from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration androidx.compose.animation.core/rememberInfiniteTransition(kotlin/String) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateValue(androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<#B>>, kotlin/String, kotlin/Function1<#A, #B>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateDp(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/Dp>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.unit/Dp>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateFloat(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>>, kotlin/String, kotlin/Function1<#A, kotlin/Float>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateInt(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Int>>, kotlin/String, kotlin/Function1<#A, kotlin/Int>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntOffset(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.unit/IntOffset>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntSize(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.unit/IntSize>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateOffset(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Offset>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.geometry/Offset>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateRect(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Rect>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.geometry/Rect>) from androidx.compose.animation:animation-core +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateSize(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Size>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.geometry/Size>) from androidx.compose.animation:animation-core \ No newline at end of file
diff --git a/compose/animation/animation-core/bcv/native/current.txt b/compose/animation/animation-core/bcv/native/current.txt index bccb41d..2e71688 100644 --- a/compose/animation/animation-core/bcv/native/current.txt +++ b/compose/animation/animation-core/bcv/native/current.txt
@@ -786,6 +786,7 @@ final fun <get-StiffnessVeryLow>(): kotlin/Float // androidx.compose.animation.core/Spring.StiffnessVeryLow.<get-StiffnessVeryLow>|<get-StiffnessVeryLow>(){}[0] } +final val androidx.compose.animation.core.internal/androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.animation.core.internal/androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop[0] final val androidx.compose.animation.core/Ease // androidx.compose.animation.core/Ease|{}Ease[0] final fun <get-Ease>(): androidx.compose.animation.core/Easing // androidx.compose.animation.core/Ease.<get-Ease>|<get-Ease>(){}[0] final val androidx.compose.animation.core/EaseIn // androidx.compose.animation.core/EaseIn|{}EaseIn[0] @@ -896,28 +897,82 @@ final fun (androidx.compose.ui.unit/IntSize.Companion).<get-VisibilityThreshold>(): androidx.compose.ui.unit/IntSize // androidx.compose.animation.core/VisibilityThreshold.<get-VisibilityThreshold>|<get-VisibilityThreshold>@androidx.compose.ui.unit.IntSize.Companion(){}[0] final val androidx.compose.animation.core/VisibilityThreshold // androidx.compose.animation.core/VisibilityThreshold|@kotlin.Int.Companion{}VisibilityThreshold[0] final fun (kotlin/Int.Companion).<get-VisibilityThreshold>(): kotlin/Int // androidx.compose.animation.core/VisibilityThreshold.<get-VisibilityThreshold>|<get-VisibilityThreshold>@kotlin.Int.Companion(){}[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_Animatable$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_Animatable$stableprop|#static{}androidx_compose_animation_core_Animatable$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationConstants$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationConstants$stableprop|#static{}androidx_compose_animation_core_AnimationConstants$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationResult$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationResult$stableprop|#static{}androidx_compose_animation_core_AnimationResult$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationScope$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationScope$stableprop|#static{}androidx_compose_animation_core_AnimationScope$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationState$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationState$stableprop|#static{}androidx_compose_animation_core_AnimationState$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector$stableprop|#static{}androidx_compose_animation_core_AnimationVector$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector1D$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector1D$stableprop|#static{}androidx_compose_animation_core_AnimationVector1D$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector2D$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector2D$stableprop|#static{}androidx_compose_animation_core_AnimationVector2D$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector3D$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector3D$stableprop|#static{}androidx_compose_animation_core_AnimationVector3D$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector4D$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector4D$stableprop|#static{}androidx_compose_animation_core_AnimationVector4D$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_ArcAnimationSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_ArcAnimationSpec$stableprop|#static{}androidx_compose_animation_core_ArcAnimationSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline$stableprop|#static{}androidx_compose_animation_core_ArcSpline$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline_Arc$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline_Arc$stableprop|#static{}androidx_compose_animation_core_ArcSpline_Arc$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_AtomicReference$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_AtomicReference$stableprop|#static{}androidx_compose_animation_core_AtomicReference$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_CubicBezierEasing$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_CubicBezierEasing$stableprop|#static{}androidx_compose_animation_core_CubicBezierEasing$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_DecayAnimation$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_DecayAnimation$stableprop|#static{}androidx_compose_animation_core_DecayAnimation$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_DeferredTargetAnimation$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_DeferredTargetAnimation$stableprop|#static{}androidx_compose_animation_core_DeferredTargetAnimation$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop|#static{}androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_FloatSpringSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_FloatSpringSpec$stableprop|#static{}androidx_compose_animation_core_FloatSpringSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_FloatTweenSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_FloatTweenSpec$stableprop|#static{}androidx_compose_animation_core_FloatTweenSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop|#static{}androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_InfiniteTransition$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_InfiniteTransition$stableprop|#static{}androidx_compose_animation_core_InfiniteTransition$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframeBaseEntity$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframeBaseEntity$stableprop|#static{}androidx_compose_animation_core_KeyframeBaseEntity$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec$stableprop|#static{}androidx_compose_animation_core_KeyframesSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop|#static{}androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop|#static{}androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop|#static{}androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop|#static{}androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop|#static{}androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_MonoSpline$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_MonoSpline$stableprop|#static{}androidx_compose_animation_core_MonoSpline$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_MutableTransitionState$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_MutableTransitionState$stableprop|#static{}androidx_compose_animation_core_MutableTransitionState$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_MutationInterruptedException$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_MutationInterruptedException$stableprop|#static{}androidx_compose_animation_core_MutationInterruptedException$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_MutatorMutex$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_MutatorMutex$stableprop|#static{}androidx_compose_animation_core_MutatorMutex$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_PathEasing$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_PathEasing$stableprop|#static{}androidx_compose_animation_core_PathEasing$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_RepeatableSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_RepeatableSpec$stableprop|#static{}androidx_compose_animation_core_RepeatableSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState$stableprop|#static{}androidx_compose_animation_core_SeekableTransitionState$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop|#static{}androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_SnapSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_SnapSpec$stableprop|#static{}androidx_compose_animation_core_SnapSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_Spring$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_Spring$stableprop|#static{}androidx_compose_animation_core_Spring$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_SpringSimulation$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_SpringSimulation$stableprop|#static{}androidx_compose_animation_core_SpringSimulation$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_SpringSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_SpringSpec$stableprop|#static{}androidx_compose_animation_core_SpringSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_TargetBasedAnimation$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_TargetBasedAnimation$stableprop|#static{}androidx_compose_animation_core_TargetBasedAnimation$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_Transition$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_Transition$stableprop|#static{}androidx_compose_animation_core_Transition$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_TransitionState$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_TransitionState$stableprop|#static{}androidx_compose_animation_core_TransitionState$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_TweenSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_TweenSpec$stableprop|#static{}androidx_compose_animation_core_TweenSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop|#static{}androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSnapSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSnapSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedSnapSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSpringSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSpringSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedSpringSpec$stableprop[0] +final val androidx.compose.animation.core/androidx_compose_animation_core_VectorizedTweenSpec$stableprop // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedTweenSpec$stableprop|#static{}androidx_compose_animation_core_VectorizedTweenSpec$stableprop[0] final val androidx.compose.animation.core/isFinished // androidx.compose.animation.core/isFinished|@androidx.compose.animation.core.AnimationState<*,*>{}isFinished[0] final fun (androidx.compose.animation.core/AnimationState<*, *>).<get-isFinished>(): kotlin/Boolean // androidx.compose.animation.core/isFinished.<get-isFinished>|<get-isFinished>@androidx.compose.animation.core.AnimationState<*,*>(){}[0] final fun (androidx.compose.animation.core/AnimationState<kotlin/Float, androidx.compose.animation.core/AnimationVector1D>).androidx.compose.animation.core/copy(kotlin/Float = ..., kotlin/Float = ..., kotlin/Long = ..., kotlin/Long = ..., kotlin/Boolean = ...): androidx.compose.animation.core/AnimationState<kotlin/Float, androidx.compose.animation.core/AnimationVector1D> // androidx.compose.animation.core/copy|copy@androidx.compose.animation.core.AnimationState<kotlin.Float,androidx.compose.animation.core.AnimationVector1D>(kotlin.Float;kotlin.Float;kotlin.Long;kotlin.Long;kotlin.Boolean){}[0] final fun (androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>).androidx.compose.animation.core/calculateTargetValue(kotlin/Float, kotlin/Float): kotlin/Float // androidx.compose.animation.core/calculateTargetValue|calculateTargetValue@androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>(kotlin.Float;kotlin.Float){}[0] -final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.InfiniteTransition(kotlin.Float;kotlin.Float;androidx.compose.animation.core.InfiniteRepeatableSpec<kotlin.Float>){}[0] -final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>, kotlin/String = ...): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.InfiniteTransition(kotlin.Float;kotlin.Float;androidx.compose.animation.core.InfiniteRepeatableSpec<kotlin.Float>;kotlin.String){}[0] +final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.InfiniteTransition(kotlin.Float;kotlin.Float;androidx.compose.animation.core.InfiniteRepeatableSpec<kotlin.Float>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateFloat(kotlin/Float, kotlin/Float, androidx.compose.animation.core/InfiniteRepeatableSpec<kotlin/Float>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.InfiniteTransition(kotlin.Float;kotlin.Float;androidx.compose.animation.core.InfiniteRepeatableSpec<kotlin.Float>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun <#A: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/VectorizedAnimationSpec<#A>).androidx.compose.animation.core/createAnimation(#A, #A, #A): androidx.compose.animation.core/TargetBasedAnimation<#A, #A> // androidx.compose.animation.core/createAnimation|createAnimation@androidx.compose.animation.core.VectorizedAnimationSpec<0:0>(0:0;0:0;0:0){0§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Animation<#A, #B>).androidx.compose.animation.core/getVelocityFromNanos(kotlin/Long): #A // androidx.compose.animation.core/getVelocityFromNanos|getVelocityFromNanos@androidx.compose.animation.core.Animation<0:0,0:1>(kotlin.Long){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/AnimationState<#A, #B>).androidx.compose.animation.core/copy(#A = ..., #B? = ..., kotlin/Long = ..., kotlin/Long = ..., kotlin/Boolean = ...): androidx.compose.animation.core/AnimationState<#A, #B> // androidx.compose.animation.core/copy|copy@androidx.compose.animation.core.AnimationState<0:0,0:1>(0:0;0:1?;kotlin.Long;kotlin.Long;kotlin.Boolean){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/DecayAnimationSpec<#A>).androidx.compose.animation.core/calculateTargetValue(androidx.compose.animation.core/TwoWayConverter<#A, #B>, #A, #A): #A // androidx.compose.animation.core/calculateTargetValue|calculateTargetValue@androidx.compose.animation.core.DecayAnimationSpec<0:0>(androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;0:0;0:0){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.InfiniteTransition(0:0;0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.InfiniteRepeatableSpec<0:0>){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>, kotlin/String = ...): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.InfiniteTransition(0:0;0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.InfiniteRepeatableSpec<0:0>;kotlin.String){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.InfiniteTransition(0:0;0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.InfiniteRepeatableSpec<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation.core/animateValue(#A, #A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/InfiniteRepeatableSpec<#A>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.InfiniteTransition(0:0;0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.InfiniteRepeatableSpec<0:0>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/TwoWayConverter<#A, #B>).androidx.compose.animation.core/createZeroVectorFrom(#A): #B // androidx.compose.animation.core/createZeroVectorFrom|createZeroVectorFrom@androidx.compose.animation.core.TwoWayConverter<0:0,0:1>(0:0){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/AnimationState(androidx.compose.animation.core/TwoWayConverter<#A, #B>, #A, #A, kotlin/Long = ..., kotlin/Long = ..., kotlin/Boolean = ...): androidx.compose.animation.core/AnimationState<#A, #B> // androidx.compose.animation.core/AnimationState|AnimationState(androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;0:0;0:0;kotlin.Long;kotlin.Long;kotlin.Boolean){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/TargetBasedAnimation(androidx.compose.animation.core/AnimationSpec<#A>, androidx.compose.animation.core/TwoWayConverter<#A, #B>, #A, #A, #A): androidx.compose.animation.core/TargetBasedAnimation<#A, #B> // androidx.compose.animation.core/TargetBasedAnimation|TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec<0:0>;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;0:0;0:0;0:0){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/TwoWayConverter(kotlin/Function1<#A, #B>, kotlin/Function1<#B, #A>): androidx.compose.animation.core/TwoWayConverter<#A, #B> // androidx.compose.animation.core/TwoWayConverter|TwoWayConverter(kotlin.Function1<0:0,0:1>;kotlin.Function1<0:1,0:0>){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A> = ..., #A? = ..., kotlin/Function1<#A, kotlin/Unit>? = ...): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValueAsState|animateValueAsState(0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.AnimationSpec<0:0>;0:0?;kotlin.Function1<0:0,kotlin.Unit>?){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A> = ..., #A? = ..., kotlin/String = ..., kotlin/Function1<#A, kotlin/Unit>? = ...): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValueAsState|animateValueAsState(0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.AnimationSpec<0:0>;0:0?;kotlin.String;kotlin.Function1<0:0,kotlin.Unit>?){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createDeferredAnimation(androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String = ...): androidx.compose.animation.core/Transition.DeferredAnimation<#B, #C, #A> // androidx.compose.animation.core/createDeferredAnimation|createDeferredAnimation@androidx.compose.animation.core.Transition<0:0>(androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.String){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createTransitionAnimation(#B, #B, androidx.compose.animation.core/FiniteAnimationSpec<#B>, androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String): androidx.compose.runtime/State<#B> // androidx.compose.animation.core/createTransitionAnimation|createTransitionAnimation@androidx.compose.animation.core.Transition<0:0>(0:1;0:1;androidx.compose.animation.core.FiniteAnimationSpec<0:1>;androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.String){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createChildTransitionInternal(#B, #B, kotlin/String): androidx.compose.animation.core/Transition<#B> // androidx.compose.animation.core/createChildTransitionInternal|createChildTransitionInternal@androidx.compose.animation.core.Transition<0:0>(0:1;0:1;kotlin.String){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A>?, #A?, kotlin/Function1<#A, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValueAsState|animateValueAsState(0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.AnimationSpec<0:0>?;0:0?;kotlin.Function1<0:0,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/animateValueAsState(#A, androidx.compose.animation.core/TwoWayConverter<#A, #B>, androidx.compose.animation.core/AnimationSpec<#A>?, #A?, kotlin/String?, kotlin/Function1<#A, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.animation.core/animateValueAsState|animateValueAsState(0:0;androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;androidx.compose.animation.core.AnimationSpec<0:0>?;0:0?;kotlin.String?;kotlin.Function1<0:0,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createDeferredAnimation(androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.animation.core/Transition.DeferredAnimation<#B, #C, #A> // androidx.compose.animation.core/createDeferredAnimation|createDeferredAnimation@androidx.compose.animation.core.Transition<0:0>(androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createTransitionAnimation(#B, #B, androidx.compose.animation.core/FiniteAnimationSpec<#B>, androidx.compose.animation.core/TwoWayConverter<#B, #C>, kotlin/String, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#B> // androidx.compose.animation.core/createTransitionAnimation|createTransitionAnimation@androidx.compose.animation.core.Transition<0:0>(0:1;0:1;androidx.compose.animation.core.FiniteAnimationSpec<0:1>;androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.String;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/createChildTransitionInternal(#B, #B, kotlin/String, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation.core/Transition<#B> // androidx.compose.animation.core/createChildTransitionInternal|createChildTransitionInternal@androidx.compose.animation.core.Transition<0:0>(0:1;0:1;kotlin.String;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> (androidx.compose.animation.core/FloatDecayAnimationSpec).androidx.compose.animation.core/generateDecayAnimationSpec(): androidx.compose.animation.core/DecayAnimationSpec<#A> // androidx.compose.animation.core/generateDecayAnimationSpec|generateDecayAnimationSpec@androidx.compose.animation.core.FloatDecayAnimationSpec(){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/exponentialDecay(kotlin/Float = ..., kotlin/Float = ...): androidx.compose.animation.core/DecayAnimationSpec<#A> // androidx.compose.animation.core/exponentialDecay|exponentialDecay(kotlin.Float;kotlin.Float){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/infiniteRepeatable(androidx.compose.animation.core/DurationBasedAnimationSpec<#A>, androidx.compose.animation.core/RepeatMode = ...): androidx.compose.animation.core/InfiniteRepeatableSpec<#A> // androidx.compose.animation.core/infiniteRepeatable|infiniteRepeatable(androidx.compose.animation.core.DurationBasedAnimationSpec<0:0>;androidx.compose.animation.core.RepeatMode){0§<kotlin.Any?>}[0] @@ -925,14 +980,15 @@ final fun <#A: kotlin/Any?> androidx.compose.animation.core/keyframes(kotlin/Function1<androidx.compose.animation.core/KeyframesSpec.KeyframesSpecConfig<#A>, kotlin/Unit>): androidx.compose.animation.core/KeyframesSpec<#A> // androidx.compose.animation.core/keyframes|keyframes(kotlin.Function1<androidx.compose.animation.core.KeyframesSpec.KeyframesSpecConfig<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/keyframesWithSpline(kotlin/Float, kotlin/Function1<androidx.compose.animation.core/KeyframesWithSplineSpec.KeyframesWithSplineSpecConfig<#A>, kotlin/Unit>): androidx.compose.animation.core/KeyframesWithSplineSpec<#A> // androidx.compose.animation.core/keyframesWithSpline|keyframesWithSpline(kotlin.Float;kotlin.Function1<androidx.compose.animation.core.KeyframesWithSplineSpec.KeyframesWithSplineSpecConfig<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/keyframesWithSpline(kotlin/Function1<androidx.compose.animation.core/KeyframesWithSplineSpec.KeyframesWithSplineSpecConfig<#A>, kotlin/Unit>): androidx.compose.animation.core/KeyframesWithSplineSpec<#A> // androidx.compose.animation.core/keyframesWithSpline|keyframesWithSpline(kotlin.Function1<androidx.compose.animation.core.KeyframesWithSplineSpec.KeyframesWithSplineSpecConfig<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation.core/rememberTransition(androidx.compose.animation.core/TransitionState<#A>, kotlin/String? = ...): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/rememberTransition|rememberTransition(androidx.compose.animation.core.TransitionState<0:0>;kotlin.String?){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation.core/rememberTransition(androidx.compose.animation.core/TransitionState<#A>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/rememberTransition|rememberTransition(androidx.compose.animation.core.TransitionState<0:0>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/repeatable(kotlin/Int, androidx.compose.animation.core/DurationBasedAnimationSpec<#A>, androidx.compose.animation.core/RepeatMode = ...): androidx.compose.animation.core/RepeatableSpec<#A> // androidx.compose.animation.core/repeatable|repeatable(kotlin.Int;androidx.compose.animation.core.DurationBasedAnimationSpec<0:0>;androidx.compose.animation.core.RepeatMode){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/repeatable(kotlin/Int, androidx.compose.animation.core/DurationBasedAnimationSpec<#A>, androidx.compose.animation.core/RepeatMode = ..., androidx.compose.animation.core/StartOffset = ...): androidx.compose.animation.core/RepeatableSpec<#A> // androidx.compose.animation.core/repeatable|repeatable(kotlin.Int;androidx.compose.animation.core.DurationBasedAnimationSpec<0:0>;androidx.compose.animation.core.RepeatMode;androidx.compose.animation.core.StartOffset){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/snap(kotlin/Int = ...): androidx.compose.animation.core/SnapSpec<#A> // androidx.compose.animation.core/snap|snap(kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/spring(kotlin/Float = ..., kotlin/Float = ..., #A? = ...): androidx.compose.animation.core/SpringSpec<#A> // androidx.compose.animation.core/spring|spring(kotlin.Float;kotlin.Float;0:0?){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation.core/tween(kotlin/Int = ..., kotlin/Int = ..., androidx.compose.animation.core/Easing = ...): androidx.compose.animation.core/TweenSpec<#A> // androidx.compose.animation.core/tween|tween(kotlin.Int;kotlin.Int;androidx.compose.animation.core.Easing){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation.core/updateTransition(#A, kotlin/String? = ...): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/updateTransition|updateTransition(0:0;kotlin.String?){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation.core/updateTransition(androidx.compose.animation.core/MutableTransitionState<#A>, kotlin/String? = ...): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/updateTransition|updateTransition(androidx.compose.animation.core.MutableTransitionState<0:0>;kotlin.String?){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation.core/updateTransition(#A, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/updateTransition|updateTransition(0:0;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation.core/updateTransition(androidx.compose.animation.core/MutableTransitionState<#A>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.animation.core/Transition<#A> // androidx.compose.animation.core/updateTransition|updateTransition(androidx.compose.animation.core.MutableTransitionState<0:0>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun androidx.compose.animation.core.internal/androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.animation.core.internal/androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_animation_core_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] final fun androidx.compose.animation.core/Animatable(kotlin/Float, kotlin/Float = ...): androidx.compose.animation.core/Animatable<kotlin/Float, androidx.compose.animation.core/AnimationVector1D> // androidx.compose.animation.core/Animatable|Animatable(kotlin.Float;kotlin.Float){}[0] final fun androidx.compose.animation.core/AnimationState(kotlin/Float, kotlin/Float = ..., kotlin/Long = ..., kotlin/Long = ..., kotlin/Boolean = ...): androidx.compose.animation.core/AnimationState<kotlin/Float, androidx.compose.animation.core/AnimationVector1D> // androidx.compose.animation.core/AnimationState|AnimationState(kotlin.Float;kotlin.Float;kotlin.Long;kotlin.Long;kotlin.Boolean){}[0] final fun androidx.compose.animation.core/AnimationVector(kotlin/Float): androidx.compose.animation.core/AnimationVector1D // androidx.compose.animation.core/AnimationVector|AnimationVector(kotlin.Float){}[0] @@ -940,36 +996,90 @@ final fun androidx.compose.animation.core/AnimationVector(kotlin/Float, kotlin/Float, kotlin/Float): androidx.compose.animation.core/AnimationVector3D // androidx.compose.animation.core/AnimationVector|AnimationVector(kotlin.Float;kotlin.Float;kotlin.Float){}[0] final fun androidx.compose.animation.core/AnimationVector(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float): androidx.compose.animation.core/AnimationVector4D // androidx.compose.animation.core/AnimationVector|AnimationVector(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] final fun androidx.compose.animation.core/DecayAnimation(androidx.compose.animation.core/FloatDecayAnimationSpec, kotlin/Float, kotlin/Float = ...): androidx.compose.animation.core/DecayAnimation<kotlin/Float, androidx.compose.animation.core/AnimationVector1D> // androidx.compose.animation.core/DecayAnimation|DecayAnimation(androidx.compose.animation.core.FloatDecayAnimationSpec;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp> = ..., kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDpAsState|animateDpAsState(androidx.compose.ui.unit.Dp;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.Dp>;kotlin.Function1<androidx.compose.ui.unit.Dp,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDpAsState|animateDpAsState(androidx.compose.ui.unit.Dp;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.Dp>;kotlin.String;kotlin.Function1<androidx.compose.ui.unit.Dp,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Float = ..., kotlin/Function1<kotlin/Float, kotlin/Unit>? = ...): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloatAsState|animateFloatAsState(kotlin.Float;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Float = ..., kotlin/String = ..., kotlin/Function1<kotlin/Float, kotlin/Unit>? = ...): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloatAsState|animateFloatAsState(kotlin.Float;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Float;kotlin.String;kotlin.Function1<kotlin.Float,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int> = ..., kotlin/Function1<kotlin/Int, kotlin/Unit>? = ...): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateIntAsState|animateIntAsState(kotlin.Int;androidx.compose.animation.core.AnimationSpec<kotlin.Int>;kotlin.Function1<kotlin.Int,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int> = ..., kotlin/String = ..., kotlin/Function1<kotlin/Int, kotlin/Unit>? = ...): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateIntAsState|animateIntAsState(kotlin.Int;androidx.compose.animation.core.AnimationSpec<kotlin.Int>;kotlin.String;kotlin.Function1<kotlin.Int,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset> = ..., kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffsetAsState|animateIntOffsetAsState(androidx.compose.ui.unit.IntOffset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntOffset>;kotlin.Function1<androidx.compose.ui.unit.IntOffset,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffsetAsState|animateIntOffsetAsState(androidx.compose.ui.unit.IntOffset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntOffset>;kotlin.String;kotlin.Function1<androidx.compose.ui.unit.IntOffset,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize> = ..., kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSizeAsState|animateIntSizeAsState(androidx.compose.ui.unit.IntSize;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntSize>;kotlin.Function1<androidx.compose.ui.unit.IntSize,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSizeAsState|animateIntSizeAsState(androidx.compose.ui.unit.IntSize;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntSize>;kotlin.String;kotlin.Function1<androidx.compose.ui.unit.IntSize,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset> = ..., kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffsetAsState|animateOffsetAsState(androidx.compose.ui.geometry.Offset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Offset>;kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffsetAsState|animateOffsetAsState(androidx.compose.ui.geometry.Offset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Offset>;kotlin.String;kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect> = ..., kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRectAsState|animateRectAsState(androidx.compose.ui.geometry.Rect;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Rect>;kotlin.Function1<androidx.compose.ui.geometry.Rect,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRectAsState|animateRectAsState(androidx.compose.ui.geometry.Rect;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Rect>;kotlin.String;kotlin.Function1<androidx.compose.ui.geometry.Rect,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size> = ..., kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSizeAsState|animateSizeAsState(androidx.compose.ui.geometry.Size;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Size>;kotlin.Function1<androidx.compose.ui.geometry.Size,kotlin.Unit>?){}[0] -final fun androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSizeAsState|animateSizeAsState(androidx.compose.ui.geometry.Size;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Size>;kotlin.String;kotlin.Function1<androidx.compose.ui.geometry.Size,kotlin.Unit>?){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_Animatable$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_Animatable$stableprop_getter|androidx_compose_animation_core_Animatable$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationConstants$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationConstants$stableprop_getter|androidx_compose_animation_core_AnimationConstants$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationResult$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationResult$stableprop_getter|androidx_compose_animation_core_AnimationResult$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationScope$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationScope$stableprop_getter|androidx_compose_animation_core_AnimationScope$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationState$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationState$stableprop_getter|androidx_compose_animation_core_AnimationState$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector$stableprop_getter|androidx_compose_animation_core_AnimationVector$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector1D$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector1D$stableprop_getter|androidx_compose_animation_core_AnimationVector1D$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector2D$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector2D$stableprop_getter|androidx_compose_animation_core_AnimationVector2D$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector3D$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector3D$stableprop_getter|androidx_compose_animation_core_AnimationVector3D$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector4D$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AnimationVector4D$stableprop_getter|androidx_compose_animation_core_AnimationVector4D$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_ArcAnimationSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_ArcAnimationSpec$stableprop_getter|androidx_compose_animation_core_ArcAnimationSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline$stableprop_getter|androidx_compose_animation_core_ArcSpline$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline_Arc$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_ArcSpline_Arc$stableprop_getter|androidx_compose_animation_core_ArcSpline_Arc$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_AtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_AtomicReference$stableprop_getter|androidx_compose_animation_core_AtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_CubicBezierEasing$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_CubicBezierEasing$stableprop_getter|androidx_compose_animation_core_CubicBezierEasing$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_DecayAnimation$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_DecayAnimation$stableprop_getter|androidx_compose_animation_core_DecayAnimation$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_DeferredTargetAnimation$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_DeferredTargetAnimation$stableprop_getter|androidx_compose_animation_core_DeferredTargetAnimation$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop_getter|androidx_compose_animation_core_FloatExponentialDecaySpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_FloatSpringSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_FloatSpringSpec$stableprop_getter|androidx_compose_animation_core_FloatSpringSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_FloatTweenSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_FloatTweenSpec$stableprop_getter|androidx_compose_animation_core_FloatTweenSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop_getter|androidx_compose_animation_core_InfiniteRepeatableSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_InfiniteTransition$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_InfiniteTransition$stableprop_getter|androidx_compose_animation_core_InfiniteTransition$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframeBaseEntity$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframeBaseEntity$stableprop_getter|androidx_compose_animation_core_KeyframeBaseEntity$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec$stableprop_getter|androidx_compose_animation_core_KeyframesSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop_getter|androidx_compose_animation_core_KeyframesSpecBaseConfig$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop_getter|androidx_compose_animation_core_KeyframesSpec_KeyframeEntity$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop_getter|androidx_compose_animation_core_KeyframesSpec_KeyframesSpecConfig$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop_getter|androidx_compose_animation_core_KeyframesWithSplineSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop_getter|androidx_compose_animation_core_KeyframesWithSplineSpec_KeyframesWithSplineSpecConfig$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_MonoSpline$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_MonoSpline$stableprop_getter|androidx_compose_animation_core_MonoSpline$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_MutableTransitionState$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_MutableTransitionState$stableprop_getter|androidx_compose_animation_core_MutableTransitionState$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_MutationInterruptedException$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_MutationInterruptedException$stableprop_getter|androidx_compose_animation_core_MutationInterruptedException$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_MutatorMutex$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_MutatorMutex$stableprop_getter|androidx_compose_animation_core_MutatorMutex$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_PathEasing$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_PathEasing$stableprop_getter|androidx_compose_animation_core_PathEasing$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_RepeatableSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_RepeatableSpec$stableprop_getter|androidx_compose_animation_core_RepeatableSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState$stableprop_getter|androidx_compose_animation_core_SeekableTransitionState$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop_getter|androidx_compose_animation_core_SeekableTransitionState_SeekingAnimationState$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_SnapSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_SnapSpec$stableprop_getter|androidx_compose_animation_core_SnapSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_Spring$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_Spring$stableprop_getter|androidx_compose_animation_core_Spring$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_SpringSimulation$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_SpringSimulation$stableprop_getter|androidx_compose_animation_core_SpringSimulation$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_SpringSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_SpringSpec$stableprop_getter|androidx_compose_animation_core_SpringSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_TargetBasedAnimation$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_TargetBasedAnimation$stableprop_getter|androidx_compose_animation_core_TargetBasedAnimation$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_Transition$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_Transition$stableprop_getter|androidx_compose_animation_core_Transition$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_TransitionState$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_TransitionState$stableprop_getter|androidx_compose_animation_core_TransitionState$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_TweenSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_TweenSpec$stableprop_getter|androidx_compose_animation_core_TweenSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop_getter|androidx_compose_animation_core_VectorizedFloatAnimationSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop_getter|androidx_compose_animation_core_VectorizedInfiniteRepeatableSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop_getter|androidx_compose_animation_core_VectorizedKeyframeSpecElementInfo$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop_getter|androidx_compose_animation_core_VectorizedKeyframesSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop_getter|androidx_compose_animation_core_VectorizedMonoSplineKeyframesSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop_getter|androidx_compose_animation_core_VectorizedRepeatableSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSnapSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSnapSpec$stableprop_getter|androidx_compose_animation_core_VectorizedSnapSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSpringSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedSpringSpec$stableprop_getter|androidx_compose_animation_core_VectorizedSpringSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/androidx_compose_animation_core_VectorizedTweenSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation.core/androidx_compose_animation_core_VectorizedTweenSpec$stableprop_getter|androidx_compose_animation_core_VectorizedTweenSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp>?, kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDpAsState|animateDpAsState(androidx.compose.ui.unit.Dp;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.Dp>?;kotlin.Function1<androidx.compose.ui.unit.Dp,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateDpAsState(androidx.compose.ui.unit/Dp, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/Dp>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.unit/Dp, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDpAsState|animateDpAsState(androidx.compose.ui.unit.Dp;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.Dp>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.unit.Dp,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloatAsState|animateFloatAsState(kotlin.Float;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateFloatAsState(kotlin/Float, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Float, kotlin/String?, kotlin/Function1<kotlin/Float, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloatAsState|animateFloatAsState(kotlin.Float;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Float;kotlin.String?;kotlin.Function1<kotlin.Float,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int>?, kotlin/Function1<kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateIntAsState|animateIntAsState(kotlin.Int;androidx.compose.animation.core.AnimationSpec<kotlin.Int>?;kotlin.Function1<kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntAsState(kotlin/Int, androidx.compose.animation.core/AnimationSpec<kotlin/Int>?, kotlin/String?, kotlin/Function1<kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateIntAsState|animateIntAsState(kotlin.Int;androidx.compose.animation.core.AnimationSpec<kotlin.Int>?;kotlin.String?;kotlin.Function1<kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset>?, kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffsetAsState|animateIntOffsetAsState(androidx.compose.ui.unit.IntOffset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntOffset>?;kotlin.Function1<androidx.compose.ui.unit.IntOffset,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntOffsetAsState(androidx.compose.ui.unit/IntOffset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntOffset>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.unit/IntOffset, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffsetAsState|animateIntOffsetAsState(androidx.compose.ui.unit.IntOffset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntOffset>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.unit.IntOffset,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize>?, kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSizeAsState|animateIntSizeAsState(androidx.compose.ui.unit.IntSize;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntSize>?;kotlin.Function1<androidx.compose.ui.unit.IntSize,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateIntSizeAsState(androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.unit/IntSize>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.unit/IntSize, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSizeAsState|animateIntSizeAsState(androidx.compose.ui.unit.IntSize;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.unit.IntSize>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.unit.IntSize,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset>?, kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffsetAsState|animateOffsetAsState(androidx.compose.ui.geometry.Offset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Offset>?;kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateOffsetAsState(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffsetAsState|animateOffsetAsState(androidx.compose.ui.geometry.Offset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Offset>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect>?, kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRectAsState|animateRectAsState(androidx.compose.ui.geometry.Rect;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Rect>?;kotlin.Function1<androidx.compose.ui.geometry.Rect,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateRectAsState(androidx.compose.ui.geometry/Rect, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Rect>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.geometry/Rect, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRectAsState|animateRectAsState(androidx.compose.ui.geometry.Rect;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Rect>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.geometry.Rect,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size>?, kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSizeAsState|animateSizeAsState(androidx.compose.ui.geometry.Size;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Size>?;kotlin.Function1<androidx.compose.ui.geometry.Size,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation.core/animateSizeAsState(androidx.compose.ui.geometry/Size, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Size>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.geometry/Size, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSizeAsState|animateSizeAsState(androidx.compose.ui.geometry.Size;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Size>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.geometry.Size,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.animation.core/estimateAnimationDurationMillis(kotlin/Double, kotlin/Double, kotlin/Double, kotlin/Double, kotlin/Double): kotlin/Long // androidx.compose.animation.core/estimateAnimationDurationMillis|estimateAnimationDurationMillis(kotlin.Double;kotlin.Double;kotlin.Double;kotlin.Double;kotlin.Double){}[0] final fun androidx.compose.animation.core/estimateAnimationDurationMillis(kotlin/Double, kotlin/Double, kotlin/Double, kotlin/Double, kotlin/Double, kotlin/Double): kotlin/Long // androidx.compose.animation.core/estimateAnimationDurationMillis|estimateAnimationDurationMillis(kotlin.Double;kotlin.Double;kotlin.Double;kotlin.Double;kotlin.Double;kotlin.Double){}[0] final fun androidx.compose.animation.core/estimateAnimationDurationMillis(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float): kotlin/Long // androidx.compose.animation.core/estimateAnimationDurationMillis|estimateAnimationDurationMillis(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.animation.core/rememberInfiniteTransition(): androidx.compose.animation.core/InfiniteTransition // androidx.compose.animation.core/rememberInfiniteTransition|rememberInfiniteTransition(){}[0] -final fun androidx.compose.animation.core/rememberInfiniteTransition(kotlin/String = ...): androidx.compose.animation.core/InfiniteTransition // androidx.compose.animation.core/rememberInfiniteTransition|rememberInfiniteTransition(kotlin.String){}[0] -final inline fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateValue(androidx.compose.animation.core/TwoWayConverter<#B, #C>, noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<#B>> = ..., kotlin/String = ..., kotlin/Function1<#A, #B>): androidx.compose.runtime/State<#B> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.Transition<0:0>(androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<0:1>>;kotlin.String;kotlin.Function1<0:0,0:1>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateDp(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/Dp>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.unit/Dp>): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDp|animateDp@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.Dp>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.unit.Dp>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateFloat(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>> = ..., kotlin/String = ..., kotlin/Function1<#A, kotlin/Float>): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>>;kotlin.String;kotlin.Function1<0:0,kotlin.Float>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateInt(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Int>> = ..., kotlin/String = ..., kotlin/Function1<#A, kotlin/Int>): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateInt|animateInt@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Int>>;kotlin.String;kotlin.Function1<0:0,kotlin.Int>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntOffset(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.unit/IntOffset>): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffset|animateIntOffset@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntOffset>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.unit.IntOffset>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntSize(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.unit/IntSize>): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSize|animateIntSize@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.unit.IntSize>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateOffset(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Offset>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.geometry/Offset>): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffset|animateOffset@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Offset>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.geometry.Offset>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateRect(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Rect>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.geometry/Rect>): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRect|animateRect@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Rect>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.geometry.Rect>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateSize(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Size>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.geometry/Size>): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSize|animateSize@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Size>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.geometry.Size>){0§<kotlin.Any?>}[0] +final fun androidx.compose.animation.core/rememberInfiniteTransition(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation.core/InfiniteTransition // androidx.compose.animation.core/rememberInfiniteTransition|rememberInfiniteTransition(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.animation.core/rememberInfiniteTransition(kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.animation.core/InfiniteTransition // androidx.compose.animation.core/rememberInfiniteTransition|rememberInfiniteTransition(kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final inline fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateValue(androidx.compose.animation.core/TwoWayConverter<#B, #C>, noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<#B>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, #B>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#B> // androidx.compose.animation.core/animateValue|animateValue@androidx.compose.animation.core.Transition<0:0>(androidx.compose.animation.core.TwoWayConverter<0:1,0:2>;kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<0:1>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,0:1>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<androidx.compose.animation.core.AnimationVector>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateDp(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/Dp>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.unit/Dp>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.animation.core/animateDp|animateDp@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.Dp>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.unit.Dp>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateFloat(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Float>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Float> // androidx.compose.animation.core/animateFloat|animateFloat@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Float>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateInt(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Int>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Int>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<kotlin/Int> // androidx.compose.animation.core/animateInt|animateInt@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Int>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Int>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntOffset(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.unit/IntOffset>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntOffset> // androidx.compose.animation.core/animateIntOffset|animateIntOffset@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntOffset>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.unit.IntOffset>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateIntSize(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.unit/IntSize>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/IntSize> // androidx.compose.animation.core/animateIntSize|animateIntSize@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.unit.IntSize>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateOffset(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Offset>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.geometry/Offset>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Offset> // androidx.compose.animation.core/animateOffset|animateOffset@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Offset>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.geometry.Offset>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateRect(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Rect>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.geometry/Rect>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Rect> // androidx.compose.animation.core/animateRect|animateRect@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Rect>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.geometry.Rect>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation.core/animateSize(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.geometry/Size>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.geometry/Size>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.geometry/Size> // androidx.compose.animation.core/animateSize|animateSize@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.geometry.Size>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.geometry.Size>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] final suspend fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/AnimationState<#A, #B>).androidx.compose.animation.core/animateDecay(androidx.compose.animation.core/DecayAnimationSpec<#A>, kotlin/Boolean = ..., kotlin/Function1<androidx.compose.animation.core/AnimationScope<#A, #B>, kotlin/Unit> = ...) // androidx.compose.animation.core/animateDecay|animateDecay@androidx.compose.animation.core.AnimationState<0:0,0:1>(androidx.compose.animation.core.DecayAnimationSpec<0:0>;kotlin.Boolean;kotlin.Function1<androidx.compose.animation.core.AnimationScope<0:0,0:1>,kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final suspend fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> (androidx.compose.animation.core/AnimationState<#A, #B>).androidx.compose.animation.core/animateTo(#A, androidx.compose.animation.core/AnimationSpec<#A> = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.animation.core/AnimationScope<#A, #B>, kotlin/Unit> = ...) // androidx.compose.animation.core/animateTo|animateTo@androidx.compose.animation.core.AnimationState<0:0,0:1>(0:0;androidx.compose.animation.core.AnimationSpec<0:0>;kotlin.Boolean;kotlin.Function1<androidx.compose.animation.core.AnimationScope<0:0,0:1>,kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0] final suspend fun <#A: kotlin/Any?, #B: androidx.compose.animation.core/AnimationVector> androidx.compose.animation.core/animate(androidx.compose.animation.core/TwoWayConverter<#A, #B>, #A, #A, #A? = ..., androidx.compose.animation.core/AnimationSpec<#A> = ..., kotlin/Function2<#A, #A, kotlin/Unit>) // androidx.compose.animation.core/animate|animate(androidx.compose.animation.core.TwoWayConverter<0:0,0:1>;0:0;0:0;0:0?;androidx.compose.animation.core.AnimationSpec<0:0>;kotlin.Function2<0:0,0:0,kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.animation.core.AnimationVector>}[0]
diff --git a/compose/animation/animation-graphics/bcv/native/current.txt b/compose/animation/animation-graphics/bcv/native/current.txt index d4264c6..f67160b 100644 --- a/compose/animation/animation-graphics/bcv/native/current.txt +++ b/compose/animation/animation-graphics/bcv/native/current.txt
@@ -18,3 +18,37 @@ final object Companion // androidx.compose.animation.graphics.vector/AnimatedImageVector.Companion|null[0] } + +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop|#static{}androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop|#static{}androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Animator$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Animator$stableprop|#static{}androidx_compose_animation_graphics_vector_Animator$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatorSet$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatorSet$stableprop|#static{}androidx_compose_animation_graphics_vector_AnimatorSet$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Keyframe$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Keyframe$stableprop|#static{}androidx_compose_animation_graphics_vector_Keyframe$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop|#static{}androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValues$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValues$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValues$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop|#static{}androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop|#static{}androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop[0] +final val androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Timestamp$stableprop // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Timestamp$stableprop|#static{}androidx_compose_animation_graphics_vector_Timestamp$stableprop[0] + +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop_getter|androidx_compose_animation_graphics_vector_AnimatedImageVector$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop_getter|androidx_compose_animation_graphics_vector_AnimatedVectorTarget$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Animator$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Animator$stableprop_getter|androidx_compose_animation_graphics_vector_Animator$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatorSet$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_AnimatorSet$stableprop_getter|androidx_compose_animation_graphics_vector_AnimatorSet$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Keyframe$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Keyframe$stableprop_getter|androidx_compose_animation_graphics_vector_Keyframe$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop_getter|androidx_compose_animation_graphics_vector_ObjectAnimator$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValues$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValues$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValues$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolder$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolder1D$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolder2D$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolderColor$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolderFloat$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolderInt$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop_getter|androidx_compose_animation_graphics_vector_PropertyValuesHolderPath$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop_getter|androidx_compose_animation_graphics_vector_StateVectorConfig$stableprop_getter(){}[0] +final fun androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Timestamp$stableprop_getter(): kotlin/Int // androidx.compose.animation.graphics.vector/androidx_compose_animation_graphics_vector_Timestamp$stableprop_getter|androidx_compose_animation_graphics_vector_Timestamp$stableprop_getter(){}[0]
diff --git a/compose/animation/animation/bcv/native/current.ignore b/compose/animation/animation/bcv/native/current.ignore new file mode 100644 index 0000000..b380ae9 --- /dev/null +++ b/compose/animation/animation/bcv/native/current.ignore
@@ -0,0 +1,19 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>, kotlin/String) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedContent(androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform>, androidx.compose.ui/Alignment, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, #A, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedVisibility(kotlin/Function1<#A, kotlin/Boolean>, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/AnimatedContent(#A, androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform>, androidx.compose.ui/Alignment, kotlin/String, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, #A, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>, kotlin/Function1<#A, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>, kotlin/String, kotlin/Function1<#A, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/rememberSplineBasedDecay() from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier, androidx.compose.animation/EnterTransition, androidx.compose.animation/ExitTransition, kotlin/String, kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color>, kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>?) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color>, kotlin/String, kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>?) from androidx.compose.animation:animation +[linuxX64]: Removed declaration androidx.compose.animation/defaultDecayAnimationSpec() from androidx.compose.animation:animation +[linuxX64]: Removed declaration (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/animateColor(kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.graphics/Color>>, kotlin/String, kotlin/Function1<#A, androidx.compose.ui.graphics/Color>) from androidx.compose.animation:animation \ No newline at end of file
diff --git a/compose/animation/animation/bcv/native/current.txt b/compose/animation/animation/bcv/native/current.txt index 84eea6b..76dcdf6 100644 --- a/compose/animation/animation/bcv/native/current.txt +++ b/compose/animation/animation/bcv/native/current.txt
@@ -127,30 +127,102 @@ final val androidx.compose.animation/VectorConverter // androidx.compose.animation/VectorConverter|@androidx.compose.ui.graphics.Color.Companion{}VectorConverter[0] final fun (androidx.compose.ui.graphics/Color.Companion).<get-VectorConverter>(): kotlin/Function1<androidx.compose.ui.graphics.colorspace/ColorSpace, androidx.compose.animation.core/TwoWayConverter<androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationVector4D>> // androidx.compose.animation/VectorConverter.<get-VectorConverter>|<get-VectorConverter>@androidx.compose.ui.graphics.Color.Companion(){}[0] +final val androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline$stableprop // androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline$stableprop|#static{}androidx_compose_animation_AndroidFlingSpline$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop // androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop|#static{}androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop // androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop|#static{}androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop // androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop|#static{}androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop // androidx.compose.animation/androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop|#static{}androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_BoundsAnimation$stableprop // androidx.compose.animation/androidx_compose_animation_BoundsAnimation$stableprop|#static{}androidx_compose_animation_BoundsAnimation$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_BoundsAnimationElement$stableprop // androidx.compose.animation/androidx_compose_animation_BoundsAnimationElement$stableprop|#static{}androidx_compose_animation_BoundsAnimationElement$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_BoundsAnimationModifierNode$stableprop // androidx.compose.animation/androidx_compose_animation_BoundsAnimationModifierNode$stableprop|#static{}androidx_compose_animation_BoundsAnimationModifierNode$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop // androidx.compose.animation/androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop|#static{}androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_ChangeSize$stableprop // androidx.compose.animation/androidx_compose_animation_ChangeSize$stableprop|#static{}androidx_compose_animation_ChangeSize$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_ContentScaleTransitionEffect$stableprop // androidx.compose.animation/androidx_compose_animation_ContentScaleTransitionEffect$stableprop|#static{}androidx_compose_animation_ContentScaleTransitionEffect$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_ContentTransform$stableprop // androidx.compose.animation/androidx_compose_animation_ContentTransform$stableprop|#static{}androidx_compose_animation_ContentTransform$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_EnterTransition$stableprop // androidx.compose.animation/androidx_compose_animation_EnterTransition$stableprop|#static{}androidx_compose_animation_EnterTransition$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_ExitTransition$stableprop // androidx.compose.animation/androidx_compose_animation_ExitTransition$stableprop|#static{}androidx_compose_animation_ExitTransition$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_Fade$stableprop // androidx.compose.animation/androidx_compose_animation_Fade$stableprop|#static{}androidx_compose_animation_Fade$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_FlingCalculator$stableprop // androidx.compose.animation/androidx_compose_animation_FlingCalculator$stableprop|#static{}androidx_compose_animation_FlingCalculator$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_FlingCalculator_FlingInfo$stableprop // androidx.compose.animation/androidx_compose_animation_FlingCalculator_FlingInfo$stableprop|#static{}androidx_compose_animation_FlingCalculator_FlingInfo$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop // androidx.compose.animation/androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop|#static{}androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNode$stableprop // androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNode$stableprop|#static{}androidx_compose_animation_RenderInTransitionOverlayNode$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop // androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop|#static{}androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_Scale$stableprop // androidx.compose.animation/androidx_compose_animation_Scale$stableprop|#static{}androidx_compose_animation_Scale$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_ScaleToBoundsImpl$stableprop // androidx.compose.animation/androidx_compose_animation_ScaleToBoundsImpl$stableprop|#static{}androidx_compose_animation_ScaleToBoundsImpl$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedBoundsNode$stableprop // androidx.compose.animation/androidx_compose_animation_SharedBoundsNode$stableprop|#static{}androidx_compose_animation_SharedBoundsNode$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedBoundsNodeElement$stableprop // androidx.compose.animation/androidx_compose_animation_SharedBoundsNodeElement$stableprop|#static{}androidx_compose_animation_SharedBoundsNodeElement$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedElement$stableprop // androidx.compose.animation/androidx_compose_animation_SharedElement$stableprop|#static{}androidx_compose_animation_SharedElement$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedElementInternalState$stableprop // androidx.compose.animation/androidx_compose_animation_SharedElementInternalState$stableprop|#static{}androidx_compose_animation_SharedElementInternalState$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedTransitionScopeImpl$stableprop // androidx.compose.animation/androidx_compose_animation_SharedTransitionScopeImpl$stableprop|#static{}androidx_compose_animation_SharedTransitionScopeImpl$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop // androidx.compose.animation/androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop|#static{}androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop // androidx.compose.animation/androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop|#static{}androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SkipToLookaheadElement$stableprop // androidx.compose.animation/androidx_compose_animation_SkipToLookaheadElement$stableprop|#static{}androidx_compose_animation_SkipToLookaheadElement$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SkipToLookaheadNode$stableprop // androidx.compose.animation/androidx_compose_animation_SkipToLookaheadNode$stableprop|#static{}androidx_compose_animation_SkipToLookaheadNode$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_Slide$stableprop // androidx.compose.animation/androidx_compose_animation_Slide$stableprop|#static{}androidx_compose_animation_Slide$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop // androidx.compose.animation/androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop|#static{}androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_TargetData$stableprop // androidx.compose.animation/androidx_compose_animation_TargetData$stableprop|#static{}androidx_compose_animation_TargetData$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_TransitionData$stableprop // androidx.compose.animation/androidx_compose_animation_TransitionData$stableprop|#static{}androidx_compose_animation_TransitionData$stableprop[0] +final val androidx.compose.animation/androidx_compose_animation_TransitionEffect$stableprop // androidx.compose.animation/androidx_compose_animation_TransitionEffect$stableprop|#static{}androidx_compose_animation_TransitionEffect$stableprop[0] -final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.InfiniteTransition(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.animation.core.InfiniteRepeatableSpec<androidx.compose.ui.graphics.Color>){}[0] -final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>, kotlin/String = ...): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.InfiniteTransition(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.animation.core.InfiniteRepeatableSpec<androidx.compose.ui.graphics.Color>;kotlin.String){}[0] +final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.InfiniteTransition(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.animation.core.InfiniteRepeatableSpec<androidx.compose.ui.graphics.Color>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.compose.animation.core/InfiniteTransition).androidx.compose.animation/animateColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.animation.core/InfiniteRepeatableSpec<androidx.compose.ui.graphics/Color>, kotlin/String?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.InfiniteTransition(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.animation.core.InfiniteRepeatableSpec<androidx.compose.ui.graphics.Color>;kotlin.String?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun (androidx.compose.animation/EnterTransition).androidx.compose.animation/togetherWith(androidx.compose.animation/ExitTransition): androidx.compose.animation/ContentTransform // androidx.compose.animation/togetherWith|togetherWith@androidx.compose.animation.EnterTransition(androidx.compose.animation.ExitTransition){}[0] -final fun (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.ColumnScope(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] -final fun (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.ColumnScope(kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] -final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.RowScope(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] -final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] +final fun (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.ColumnScope(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.foundation.layout/ColumnScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.ColumnScope(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.RowScope(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.animation/animateContentSize(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize> = ..., androidx.compose.ui/Alignment = ..., kotlin/Function2<androidx.compose.ui.unit/IntSize, androidx.compose.ui.unit/IntSize, kotlin/Unit>? = ...): androidx.compose.ui/Modifier // androidx.compose.animation/animateContentSize|animateContentSize@androidx.compose.ui.Modifier(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>;androidx.compose.ui.Alignment;kotlin.Function2<androidx.compose.ui.unit.IntSize,androidx.compose.ui.unit.IntSize,kotlin.Unit>?){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.animation/animateContentSize(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize> = ..., kotlin/Function2<androidx.compose.ui.unit/IntSize, androidx.compose.ui.unit/IntSize, kotlin/Unit>? = ...): androidx.compose.ui/Modifier // androidx.compose.animation/animateContentSize|animateContentSize@androidx.compose.ui.Modifier(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>;kotlin.Function2<androidx.compose.ui.unit.IntSize,androidx.compose.ui.unit.IntSize,kotlin.Unit>?){}[0] -final fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedContent(androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform> = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<#A, kotlin/Any?> = ..., kotlin/Function2<androidx.compose.animation/AnimatedContentScope, #A, kotlin/Unit>) // androidx.compose.animation/AnimatedContent|AnimatedContent@androidx.compose.animation.core.Transition<0:0>(androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<0:0>,androidx.compose.animation.ContentTransform>;androidx.compose.ui.Alignment;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedVisibility(kotlin/Function1<#A, kotlin/Boolean>, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<0:0,kotlin.Boolean>;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation/AnimatedContent(#A, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform> = ..., androidx.compose.ui/Alignment = ..., kotlin/String = ..., kotlin/Function1<#A, kotlin/Any?> = ..., kotlin/Function2<androidx.compose.animation/AnimatedContentScope, #A, kotlin/Unit>) // androidx.compose.animation/AnimatedContent|AnimatedContent(0:0;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<0:0>,androidx.compose.animation.ContentTransform>;androidx.compose.ui.Alignment;kotlin.String;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., kotlin/Function1<#A, kotlin/Unit>) // androidx.compose.animation/Crossfade|Crossfade(0:0;androidx.compose.ui.Modifier;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., kotlin/String = ..., kotlin/Function1<#A, kotlin/Unit>) // androidx.compose.animation/Crossfade|Crossfade(0:0;androidx.compose.ui.Modifier;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;kotlin.String;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.animation/rememberSplineBasedDecay(): androidx.compose.animation.core/DecayAnimationSpec<#A> // androidx.compose.animation/rememberSplineBasedDecay|rememberSplineBasedDecay(){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedContent(androidx.compose.ui/Modifier?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform>?, androidx.compose.ui/Alignment?, kotlin/Function1<#A, kotlin/Any?>?, kotlin/Function4<androidx.compose.animation/AnimatedContentScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedContent|AnimatedContent@androidx.compose.animation.core.Transition<0:0>(androidx.compose.ui.Modifier?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<0:0>,androidx.compose.animation.ContentTransform>?;androidx.compose.ui.Alignment?;kotlin.Function1<0:0,kotlin.Any?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/AnimatedVisibility(kotlin/Function1<#A, kotlin/Boolean>, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<0:0,kotlin.Boolean>;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation/AnimatedContent(#A, androidx.compose.ui/Modifier?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<#A>, androidx.compose.animation/ContentTransform>?, androidx.compose.ui/Alignment?, kotlin/String?, kotlin/Function1<#A, kotlin/Any?>?, kotlin/Function4<androidx.compose.animation/AnimatedContentScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedContent|AnimatedContent(0:0;androidx.compose.ui.Modifier?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<0:0>,androidx.compose.animation.ContentTransform>?;androidx.compose.ui.Alignment?;kotlin.String?;kotlin.Function1<0:0,kotlin.Any?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier?, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/Crossfade|Crossfade(0:0;androidx.compose.ui.Modifier?;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation/Crossfade(#A, androidx.compose.ui/Modifier?, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/Crossfade|Crossfade(0:0;androidx.compose.ui.Modifier?;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.animation/rememberSplineBasedDecay(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation.core/DecayAnimationSpec<#A> // androidx.compose.animation/rememberSplineBasedDecay|rememberSplineBasedDecay(androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.animation/splineBasedDecay(androidx.compose.ui.unit/Density): androidx.compose.animation.core/DecayAnimationSpec<#A> // androidx.compose.animation/splineBasedDecay|splineBasedDecay(androidx.compose.ui.unit.Density){0§<kotlin.Any?>}[0] final fun androidx.compose.animation/Animatable(androidx.compose.ui.graphics/Color): androidx.compose.animation.core/Animatable<androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationVector4D> // androidx.compose.animation/Animatable|Animatable(androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] -final fun androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.animation/AnimatedVisibilityScope, kotlin/Unit>) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility(kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;kotlin.String;kotlin.Function1<androidx.compose.animation.AnimatedVisibilityScope,kotlin.Unit>){}[0] +final fun androidx.compose.animation/AnimatedVisibility(androidx.compose.animation.core/MutableTransitionState<kotlin/Boolean>, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility(androidx.compose.animation.core.MutableTransitionState<kotlin.Boolean>;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation/AnimatedVisibility(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, kotlin/String?, kotlin/Function3<androidx.compose.animation/AnimatedVisibilityScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.animation/AnimatedVisibility|AnimatedVisibility(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;kotlin.String?;kotlin.Function3<androidx.compose.animation.AnimatedVisibilityScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.animation/SizeTransform(kotlin/Boolean = ..., kotlin/Function2<androidx.compose.ui.unit/IntSize, androidx.compose.ui.unit/IntSize, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize>> = ...): androidx.compose.animation/SizeTransform // androidx.compose.animation/SizeTransform|SizeTransform(kotlin.Boolean;kotlin.Function2<androidx.compose.ui.unit.IntSize,androidx.compose.ui.unit.IntSize,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>>){}[0] -final fun androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color> = ..., kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColorAsState|animateColorAsState(androidx.compose.ui.graphics.Color;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.graphics.Color>;kotlin.Function1<androidx.compose.ui.graphics.Color,kotlin.Unit>?){}[0] -final fun androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color> = ..., kotlin/String = ..., kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>? = ...): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColorAsState|animateColorAsState(androidx.compose.ui.graphics.Color;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.graphics.Color>;kotlin.String;kotlin.Function1<androidx.compose.ui.graphics.Color,kotlin.Unit>?){}[0] -final fun androidx.compose.animation/defaultDecayAnimationSpec(): androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> // androidx.compose.animation/defaultDecayAnimationSpec|defaultDecayAnimationSpec(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline$stableprop_getter|androidx_compose_animation_AndroidFlingSpline$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop_getter|androidx_compose_animation_AndroidFlingSpline_FlingResult$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop_getter|androidx_compose_animation_AnimatedContentTransitionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop_getter|androidx_compose_animation_AnimatedContentTransitionScopeImpl_ChildData$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop_getter|androidx_compose_animation_AnimatedVisibilityScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_BoundsAnimation$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_BoundsAnimation$stableprop_getter|androidx_compose_animation_BoundsAnimation$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_BoundsAnimationElement$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_BoundsAnimationElement$stableprop_getter|androidx_compose_animation_BoundsAnimationElement$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_BoundsAnimationModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_BoundsAnimationModifierNode$stableprop_getter|androidx_compose_animation_BoundsAnimationModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop_getter|androidx_compose_animation_BoundsTransformDeferredAnimation$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_ChangeSize$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_ChangeSize$stableprop_getter|androidx_compose_animation_ChangeSize$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_ContentScaleTransitionEffect$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_ContentScaleTransitionEffect$stableprop_getter|androidx_compose_animation_ContentScaleTransitionEffect$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_ContentTransform$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_ContentTransform$stableprop_getter|androidx_compose_animation_ContentTransform$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_EnterTransition$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_EnterTransition$stableprop_getter|androidx_compose_animation_EnterTransition$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_ExitTransition$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_ExitTransition$stableprop_getter|androidx_compose_animation_ExitTransition$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_Fade$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_Fade$stableprop_getter|androidx_compose_animation_Fade$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_FlingCalculator$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_FlingCalculator$stableprop_getter|androidx_compose_animation_FlingCalculator$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_FlingCalculator_FlingInfo$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_FlingCalculator_FlingInfo$stableprop_getter|androidx_compose_animation_FlingCalculator_FlingInfo$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop_getter|androidx_compose_animation_LayoutModifierNodeWithPassThroughIntrinsics$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNode$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNode$stableprop_getter|androidx_compose_animation_RenderInTransitionOverlayNode$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop_getter|androidx_compose_animation_RenderInTransitionOverlayNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_Scale$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_Scale$stableprop_getter|androidx_compose_animation_Scale$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_ScaleToBoundsImpl$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_ScaleToBoundsImpl$stableprop_getter|androidx_compose_animation_ScaleToBoundsImpl$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedBoundsNode$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedBoundsNode$stableprop_getter|androidx_compose_animation_SharedBoundsNode$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedBoundsNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedBoundsNodeElement$stableprop_getter|androidx_compose_animation_SharedBoundsNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedElement$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedElement$stableprop_getter|androidx_compose_animation_SharedElement$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedElementInternalState$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedElementInternalState$stableprop_getter|androidx_compose_animation_SharedElementInternalState$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedTransitionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedTransitionScopeImpl$stableprop_getter|androidx_compose_animation_SharedTransitionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop_getter|androidx_compose_animation_SharedTransitionScope_SharedContentState$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop_getter|androidx_compose_animation_SizeAnimationModifierNode_AnimData$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SkipToLookaheadElement$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SkipToLookaheadElement$stableprop_getter|androidx_compose_animation_SkipToLookaheadElement$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SkipToLookaheadNode$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SkipToLookaheadNode$stableprop_getter|androidx_compose_animation_SkipToLookaheadNode$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_Slide$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_Slide$stableprop_getter|androidx_compose_animation_Slide$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop_getter|androidx_compose_animation_SplineBasedFloatDecayAnimationSpec$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_TargetData$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_TargetData$stableprop_getter|androidx_compose_animation_TargetData$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_TransitionData$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_TransitionData$stableprop_getter|androidx_compose_animation_TransitionData$stableprop_getter(){}[0] +final fun androidx.compose.animation/androidx_compose_animation_TransitionEffect$stableprop_getter(): kotlin/Int // androidx.compose.animation/androidx_compose_animation_TransitionEffect$stableprop_getter|androidx_compose_animation_TransitionEffect$stableprop_getter(){}[0] +final fun androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color>?, kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColorAsState|animateColorAsState(androidx.compose.ui.graphics.Color;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.graphics.Color>?;kotlin.Function1<androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation/animateColorAsState(androidx.compose.ui.graphics/Color, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.graphics/Color>?, kotlin/String?, kotlin/Function1<androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColorAsState|animateColorAsState(androidx.compose.ui.graphics.Color;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.graphics.Color>?;kotlin.String?;kotlin.Function1<androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.animation/defaultDecayAnimationSpec(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> // androidx.compose.animation/defaultDecayAnimationSpec|defaultDecayAnimationSpec(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.animation/expandHorizontally(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize> = ..., androidx.compose.ui/Alignment.Horizontal = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Int> = ...): androidx.compose.animation/EnterTransition // androidx.compose.animation/expandHorizontally|expandHorizontally(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>;androidx.compose.ui.Alignment.Horizontal;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Int>){}[0] final fun androidx.compose.animation/expandIn(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize> = ..., androidx.compose.ui/Alignment = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.ui.unit/IntSize, androidx.compose.ui.unit/IntSize> = ...): androidx.compose.animation/EnterTransition // androidx.compose.animation/expandIn|expandIn(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>;androidx.compose.ui.Alignment;kotlin.Boolean;kotlin.Function1<androidx.compose.ui.unit.IntSize,androidx.compose.ui.unit.IntSize>){}[0] final fun androidx.compose.animation/expandVertically(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntSize> = ..., androidx.compose.ui/Alignment.Vertical = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Int> = ...): androidx.compose.animation/EnterTransition // androidx.compose.animation/expandVertically|expandVertically(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntSize>;androidx.compose.ui.Alignment.Vertical;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Int>){}[0] @@ -167,4 +239,4 @@ final fun androidx.compose.animation/slideOut(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset> = ..., kotlin/Function1<androidx.compose.ui.unit/IntSize, androidx.compose.ui.unit/IntOffset>): androidx.compose.animation/ExitTransition // androidx.compose.animation/slideOut|slideOut(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntOffset>;kotlin.Function1<androidx.compose.ui.unit.IntSize,androidx.compose.ui.unit.IntOffset>){}[0] final fun androidx.compose.animation/slideOutHorizontally(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset> = ..., kotlin/Function1<kotlin/Int, kotlin/Int> = ...): androidx.compose.animation/ExitTransition // androidx.compose.animation/slideOutHorizontally|slideOutHorizontally(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntOffset>;kotlin.Function1<kotlin.Int,kotlin.Int>){}[0] final fun androidx.compose.animation/slideOutVertically(androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntOffset> = ..., kotlin/Function1<kotlin/Int, kotlin/Int> = ...): androidx.compose.animation/ExitTransition // androidx.compose.animation/slideOutVertically|slideOutVertically(androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntOffset>;kotlin.Function1<kotlin.Int,kotlin.Int>){}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/animateColor(noinline kotlin/Function1<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.graphics/Color>> = ..., kotlin/String = ..., kotlin/Function1<#A, androidx.compose.ui.graphics/Color>): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.Transition<0:0>(kotlin.Function1<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.graphics.Color>>;kotlin.String;kotlin.Function1<0:0,androidx.compose.ui.graphics.Color>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.animation.core/Transition<#A>).androidx.compose.animation/animateColor(noinline kotlin/Function3<androidx.compose.animation.core/Transition.Segment<#A>, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.graphics/Color>>?, kotlin/String?, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui.graphics/Color>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.animation/animateColor|animateColor@androidx.compose.animation.core.Transition<0:0>(kotlin.Function3<androidx.compose.animation.core.Transition.Segment<0:0>,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.graphics.Color>>?;kotlin.String?;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.graphics.Color>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0]
diff --git a/compose/foundation/foundation-layout/bcv/native/current.ignore b/compose/foundation/foundation-layout/bcv/native/current.ignore new file mode 100644 index 0000000..cea79c5 --- /dev/null +++ b/compose/foundation/foundation-layout/bcv/native/current.ignore
@@ -0,0 +1,41 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/asPaddingValues() from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/BoxWithConstraints(androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.layout/BoxWithConstraintsScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/FlowColumn(androidx.compose.ui/Modifier, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Horizontal, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.foundation.layout/FlowColumnScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/FlowRow(androidx.compose.ui/Modifier, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Vertical, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.foundation.layout/FlowRowScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/Spacer(androidx.compose.ui/Modifier) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/columnMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/columnMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, kotlin/Int) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/rememberBoxMeasurePolicy(androidx.compose.ui/Alignment, kotlin/Boolean) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/rowMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/rowMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, kotlin/Int) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/Column(androidx.compose.ui/Modifier, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Removed declaration androidx.compose.foundation.layout/Row(androidx.compose.ui/Modifier, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.foundation:foundation-layout +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/captionBar.<get-captionBar> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/captionBar.<get-captionBar> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/displayCutout.<get-displayCutout> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/displayCutout.<get-displayCutout> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/ime.<get-ime> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/ime.<get-ime> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/mandatorySystemGestures.<get-mandatorySystemGestures> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/mandatorySystemGestures.<get-mandatorySystemGestures> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/navigationBars.<get-navigationBars> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/navigationBars.<get-navigationBars> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/safeContent.<get-safeContent> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/safeContent.<get-safeContent> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/safeDrawing.<get-safeDrawing> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/safeDrawing.<get-safeDrawing> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/safeGestures.<get-safeGestures> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/safeGestures.<get-safeGestures> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/statusBars.<get-statusBars> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/statusBars.<get-statusBars> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/systemBars.<get-systemBars> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/systemBars.<get-systemBars> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/systemGestures.<get-systemGestures> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/systemGestures.<get-systemGestures> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/tappableElement.<get-tappableElement> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/tappableElement.<get-tappableElement> +[linuxX64]: Added valueParameter 1: androidx.compose.runtime/Composer? to androidx.compose.foundation.layout/waterfall.<get-waterfall> +[linuxX64]: Added valueParameter 2: kotlin/Int to androidx.compose.foundation.layout/waterfall.<get-waterfall> \ No newline at end of file
diff --git a/compose/foundation/foundation-layout/bcv/native/current.txt b/compose/foundation/foundation-layout/bcv/native/current.txt index fa7677a..69ab8d6 100644 --- a/compose/foundation/foundation-layout/bcv/native/current.txt +++ b/compose/foundation/foundation-layout/bcv/native/current.txt
@@ -189,37 +189,91 @@ final fun <get-DefaultColumnMeasurePolicy>(): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/DefaultColumnMeasurePolicy.<get-DefaultColumnMeasurePolicy>|<get-DefaultColumnMeasurePolicy>(){}[0] final val androidx.compose.foundation.layout/DefaultRowMeasurePolicy // androidx.compose.foundation.layout/DefaultRowMeasurePolicy|{}DefaultRowMeasurePolicy[0] final fun <get-DefaultRowMeasurePolicy>(): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/DefaultRowMeasurePolicy.<get-DefaultRowMeasurePolicy>|<get-DefaultRowMeasurePolicy>(){}[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider$stableprop|#static{}androidx_compose_foundation_layout_AlignmentLineProvider$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop|#static{}androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop|#static{}androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement$stableprop|#static{}androidx_compose_foundation_layout_Arrangement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_Absolute$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_Absolute$stableprop|#static{}androidx_compose_foundation_layout_Arrangement_Absolute$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop|#static{}androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_BoxScopeInstance$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_BoxScopeInstance$stableprop|#static{}androidx_compose_foundation_layout_BoxScopeInstance$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop|#static{}androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnScopeInstance$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnScopeInstance$stableprop|#static{}androidx_compose_foundation_layout_ColumnScopeInstance$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop|#static{}androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_CrossAxisAlignment$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_CrossAxisAlignment$stableprop|#static{}androidx_compose_foundation_layout_CrossAxisAlignment$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop|#static{}androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop|#static{}androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflow$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflow$stableprop|#static{}androidx_compose_foundation_layout_FlowColumnOverflow$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop|#static{}androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutData$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutData$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutData$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop|#static{}androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLineInfo$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLineInfo$stableprop|#static{}androidx_compose_foundation_layout_FlowLineInfo$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflow$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflow$stableprop|#static{}androidx_compose_foundation_layout_FlowRowOverflow$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop|#static{}androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop|#static{}androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignElement$stableprop|#static{}androidx_compose_foundation_layout_HorizontalAlignElement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignNode$stableprop|#static{}androidx_compose_foundation_layout_HorizontalAlignNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop|#static{}androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsValues$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsValues$stableprop|#static{}androidx_compose_foundation_layout_InsetsValues$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop|#static{}androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightElement$stableprop|#static{}androidx_compose_foundation_layout_LayoutWeightElement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightNode$stableprop|#static{}androidx_compose_foundation_layout_LayoutWeightNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_MutableWindowInsets$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_MutableWindowInsets$stableprop|#static{}androidx_compose_foundation_layout_MutableWindowInsets$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValuesImpl$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValuesImpl$stableprop|#static{}androidx_compose_foundation_layout_PaddingValuesImpl$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop|#static{}androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowColumnParentData$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowColumnParentData$stableprop|#static{}androidx_compose_foundation_layout_RowColumnParentData$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowMeasurePolicy$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowMeasurePolicy$stableprop|#static{}androidx_compose_foundation_layout_RowMeasurePolicy$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowScopeInstance$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowScopeInstance$stableprop|#static{}androidx_compose_foundation_layout_RowScopeInstance$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop|#static{}androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop|#static{}androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop|#static{}androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_ValueInsets$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ValueInsets$stableprop|#static{}androidx_compose_foundation_layout_ValueInsets$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignElement$stableprop|#static{}androidx_compose_foundation_layout_VerticalAlignElement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignNode$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignNode$stableprop|#static{}androidx_compose_foundation_layout_VerticalAlignNode$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop|#static{}androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop[0] +final val androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop // androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop|#static{}androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop[0] final val androidx.compose.foundation.layout/captionBar // androidx.compose.foundation.layout/captionBar|@androidx.compose.foundation.layout.WindowInsets.Companion{}captionBar[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-captionBar>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/captionBar.<get-captionBar>|<get-captionBar>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-captionBar>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/captionBar.<get-captionBar>|<get-captionBar>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/displayCutout // androidx.compose.foundation.layout/displayCutout|@androidx.compose.foundation.layout.WindowInsets.Companion{}displayCutout[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-displayCutout>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/displayCutout.<get-displayCutout>|<get-displayCutout>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-displayCutout>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/displayCutout.<get-displayCutout>|<get-displayCutout>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/ime // androidx.compose.foundation.layout/ime|@androidx.compose.foundation.layout.WindowInsets.Companion{}ime[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-ime>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/ime.<get-ime>|<get-ime>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-ime>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/ime.<get-ime>|<get-ime>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/mandatorySystemGestures // androidx.compose.foundation.layout/mandatorySystemGestures|@androidx.compose.foundation.layout.WindowInsets.Companion{}mandatorySystemGestures[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-mandatorySystemGestures>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/mandatorySystemGestures.<get-mandatorySystemGestures>|<get-mandatorySystemGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-mandatorySystemGestures>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/mandatorySystemGestures.<get-mandatorySystemGestures>|<get-mandatorySystemGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/navigationBars // androidx.compose.foundation.layout/navigationBars|@androidx.compose.foundation.layout.WindowInsets.Companion{}navigationBars[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-navigationBars>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/navigationBars.<get-navigationBars>|<get-navigationBars>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-navigationBars>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/navigationBars.<get-navigationBars>|<get-navigationBars>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/safeContent // androidx.compose.foundation.layout/safeContent|@androidx.compose.foundation.layout.WindowInsets.Companion{}safeContent[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeContent>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeContent.<get-safeContent>|<get-safeContent>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeContent>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeContent.<get-safeContent>|<get-safeContent>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/safeDrawing // androidx.compose.foundation.layout/safeDrawing|@androidx.compose.foundation.layout.WindowInsets.Companion{}safeDrawing[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeDrawing>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeDrawing.<get-safeDrawing>|<get-safeDrawing>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeDrawing>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeDrawing.<get-safeDrawing>|<get-safeDrawing>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/safeGestures // androidx.compose.foundation.layout/safeGestures|@androidx.compose.foundation.layout.WindowInsets.Companion{}safeGestures[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeGestures>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeGestures.<get-safeGestures>|<get-safeGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-safeGestures>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/safeGestures.<get-safeGestures>|<get-safeGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/statusBars // androidx.compose.foundation.layout/statusBars|@androidx.compose.foundation.layout.WindowInsets.Companion{}statusBars[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-statusBars>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/statusBars.<get-statusBars>|<get-statusBars>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-statusBars>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/statusBars.<get-statusBars>|<get-statusBars>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/systemBars // androidx.compose.foundation.layout/systemBars|@androidx.compose.foundation.layout.WindowInsets.Companion{}systemBars[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-systemBars>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/systemBars.<get-systemBars>|<get-systemBars>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-systemBars>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/systemBars.<get-systemBars>|<get-systemBars>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/systemGestures // androidx.compose.foundation.layout/systemGestures|@androidx.compose.foundation.layout.WindowInsets.Companion{}systemGestures[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-systemGestures>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/systemGestures.<get-systemGestures>|<get-systemGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-systemGestures>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/systemGestures.<get-systemGestures>|<get-systemGestures>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/tappableElement // androidx.compose.foundation.layout/tappableElement|@androidx.compose.foundation.layout.WindowInsets.Companion{}tappableElement[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-tappableElement>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/tappableElement.<get-tappableElement>|<get-tappableElement>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-tappableElement>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/tappableElement.<get-tappableElement>|<get-tappableElement>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.foundation.layout/waterfall // androidx.compose.foundation.layout/waterfall|@androidx.compose.foundation.layout.WindowInsets.Companion{}waterfall[0] - final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-waterfall>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/waterfall.<get-waterfall>|<get-waterfall>@androidx.compose.foundation.layout.WindowInsets.Companion(){}[0] + final fun (androidx.compose.foundation.layout/WindowInsets.Companion).<get-waterfall>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/waterfall.<get-waterfall>|<get-waterfall>@androidx.compose.foundation.layout.WindowInsets.Companion(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun (androidx.compose.foundation.layout/PaddingValues).androidx.compose.foundation.layout/calculateEndPadding(androidx.compose.ui.unit/LayoutDirection): androidx.compose.ui.unit/Dp // androidx.compose.foundation.layout/calculateEndPadding|calculateEndPadding@androidx.compose.foundation.layout.PaddingValues(androidx.compose.ui.unit.LayoutDirection){}[0] final fun (androidx.compose.foundation.layout/PaddingValues).androidx.compose.foundation.layout/calculateStartPadding(androidx.compose.ui.unit/LayoutDirection): androidx.compose.ui.unit/Dp // androidx.compose.foundation.layout/calculateStartPadding|calculateStartPadding@androidx.compose.foundation.layout.PaddingValues(androidx.compose.ui.unit.LayoutDirection){}[0] final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/add(androidx.compose.foundation.layout/WindowInsets): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/add|add@androidx.compose.foundation.layout.WindowInsets(androidx.compose.foundation.layout.WindowInsets){}[0] -final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/asPaddingValues(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/asPaddingValues|asPaddingValues@androidx.compose.foundation.layout.WindowInsets(){}[0] +final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/asPaddingValues(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/asPaddingValues|asPaddingValues@androidx.compose.foundation.layout.WindowInsets(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/asPaddingValues(androidx.compose.ui.unit/Density): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/asPaddingValues|asPaddingValues@androidx.compose.foundation.layout.WindowInsets(androidx.compose.ui.unit.Density){}[0] final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/exclude(androidx.compose.foundation.layout/WindowInsets): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/exclude|exclude@androidx.compose.foundation.layout.WindowInsets(androidx.compose.foundation.layout.WindowInsets){}[0] final fun (androidx.compose.foundation.layout/WindowInsets).androidx.compose.foundation.layout/only(androidx.compose.foundation.layout/WindowInsetsSides): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/only|only@androidx.compose.foundation.layout.WindowInsets(androidx.compose.foundation.layout.WindowInsetsSides){}[0] @@ -288,23 +342,77 @@ final fun (androidx.compose.ui/Modifier).androidx.compose.foundation.layout/wrapContentHeight(androidx.compose.ui/Alignment.Vertical = ..., kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.foundation.layout/wrapContentHeight|wrapContentHeight@androidx.compose.ui.Modifier(androidx.compose.ui.Alignment.Vertical;kotlin.Boolean){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.foundation.layout/wrapContentSize(androidx.compose.ui/Alignment = ..., kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.foundation.layout/wrapContentSize|wrapContentSize@androidx.compose.ui.Modifier(androidx.compose.ui.Alignment;kotlin.Boolean){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.foundation.layout/wrapContentWidth(androidx.compose.ui/Alignment.Horizontal = ..., kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.foundation.layout/wrapContentWidth|wrapContentWidth@androidx.compose.ui.Modifier(androidx.compose.ui.Alignment.Horizontal;kotlin.Boolean){}[0] -final fun androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier) // androidx.compose.foundation.layout/Box|Box(androidx.compose.ui.Modifier){}[0] -final fun androidx.compose.foundation.layout/BoxWithConstraints(androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxWithConstraintsScope, kotlin/Unit>) // androidx.compose.foundation.layout/BoxWithConstraints|BoxWithConstraints(androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.layout.BoxWithConstraintsScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.layout/FlowColumn(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui/Alignment.Horizontal = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.foundation.layout/FlowColumnScope, kotlin/Unit>) // androidx.compose.foundation.layout/FlowColumn|FlowColumn(androidx.compose.ui.Modifier;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Horizontal;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.foundation.layout.FlowColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.layout/FlowRow(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui/Alignment.Vertical = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.foundation.layout/FlowRowScope, kotlin/Unit>) // androidx.compose.foundation.layout/FlowRow|FlowRow(androidx.compose.ui.Modifier;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Vertical;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.foundation.layout.FlowRowScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.layout/Box|Box(androidx.compose.ui.Modifier;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/BoxWithConstraints(androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/Boolean, kotlin/Function3<androidx.compose.foundation.layout/BoxWithConstraintsScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/BoxWithConstraints|BoxWithConstraints(androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.Boolean;kotlin.Function3<androidx.compose.foundation.layout.BoxWithConstraintsScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/FlowColumn(androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui/Alignment.Horizontal?, kotlin/Int, kotlin/Int, kotlin/Function3<androidx.compose.foundation.layout/FlowColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/FlowColumn|FlowColumn(androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.Alignment.Horizontal?;kotlin.Int;kotlin.Int;kotlin.Function3<androidx.compose.foundation.layout.FlowColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/FlowRow(androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui/Alignment.Vertical?, kotlin/Int, kotlin/Int, kotlin/Function3<androidx.compose.foundation.layout/FlowRowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/FlowRow|FlowRow(androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.Alignment.Vertical?;kotlin.Int;kotlin.Int;kotlin.Function3<androidx.compose.foundation.layout.FlowRowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.foundation.layout/PaddingValues(androidx.compose.ui.unit/Dp): androidx.compose.foundation.layout/PaddingValues // androidx.compose.foundation.layout/PaddingValues|PaddingValues(androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.foundation.layout/Spacer(androidx.compose.ui/Modifier) // androidx.compose.foundation.layout/Spacer|Spacer(androidx.compose.ui.Modifier){}[0] +final fun androidx.compose.foundation.layout/Spacer(androidx.compose.ui/Modifier, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.layout/Spacer|Spacer(androidx.compose.ui.Modifier;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.foundation.layout/WindowInsets(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/WindowInsets|WindowInsets(){}[0] final fun androidx.compose.foundation.layout/WindowInsets(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/WindowInsets|WindowInsets(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.foundation.layout/WindowInsets(kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ...): androidx.compose.foundation.layout/WindowInsets // androidx.compose.foundation.layout/WindowInsets|WindowInsets(kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] -final fun androidx.compose.foundation.layout/columnMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/columnMeasurePolicy|columnMeasurePolicy(androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal){}[0] -final fun androidx.compose.foundation.layout/columnMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/columnMeasurementHelper|columnMeasurementHelper(androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.layout.Arrangement.Horizontal;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider$stableprop_getter|androidx_compose_foundation_layout_AlignmentLineProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop_getter|androidx_compose_foundation_layout_AlignmentLineProvider_Block$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop_getter|androidx_compose_foundation_layout_AlignmentLineProvider_Value$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement$stableprop_getter|androidx_compose_foundation_layout_Arrangement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_Absolute$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_Absolute$stableprop_getter|androidx_compose_foundation_layout_Arrangement_Absolute$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop_getter|androidx_compose_foundation_layout_Arrangement_SpacedAligned$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_BoxScopeInstance$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_BoxScopeInstance$stableprop_getter|androidx_compose_foundation_layout_BoxScopeInstance$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop_getter|androidx_compose_foundation_layout_ColumnMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnScopeInstance$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ColumnScopeInstance$stableprop_getter|androidx_compose_foundation_layout_ColumnScopeInstance$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop_getter|androidx_compose_foundation_layout_ComposeFoundationLayoutFlags$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowColumnOverflow$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowColumnOverflowScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowColumnScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowItemIterator$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowRowOverflow$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowRowOverflowScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop_getter|androidx_compose_foundation_layout_ContextualFlowRowScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_CrossAxisAlignment$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_CrossAxisAlignment$stableprop_getter|androidx_compose_foundation_layout_CrossAxisAlignment$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop_getter|androidx_compose_foundation_layout_FillCrossAxisSizeElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop_getter|androidx_compose_foundation_layout_FillCrossAxisSizeNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflow$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflow$stableprop_getter|androidx_compose_foundation_layout_FlowColumnOverflow$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop_getter|androidx_compose_foundation_layout_FlowColumnOverflowScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop_getter|androidx_compose_foundation_layout_FlowColumnScopeInstance$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutBuildingBlocks$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapEllipsisInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutBuildingBlocks_WrapInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutData$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutData$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutData$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutOverflow$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop_getter|androidx_compose_foundation_layout_FlowLayoutOverflowState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLineInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowLineInfo$stableprop_getter|androidx_compose_foundation_layout_FlowLineInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflow$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflow$stableprop_getter|androidx_compose_foundation_layout_FlowRowOverflow$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop_getter|androidx_compose_foundation_layout_FlowRowOverflowScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop_getter|androidx_compose_foundation_layout_FlowRowScopeInstance$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignElement$stableprop_getter|androidx_compose_foundation_layout_HorizontalAlignElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_HorizontalAlignNode$stableprop_getter|androidx_compose_foundation_layout_HorizontalAlignNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop_getter|androidx_compose_foundation_layout_InsetsPaddingModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsValues$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_InsetsValues$stableprop_getter|androidx_compose_foundation_layout_InsetsValues$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop_getter|androidx_compose_foundation_layout_IntrinsicMeasureBlocks$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightElement$stableprop_getter|androidx_compose_foundation_layout_LayoutWeightElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_LayoutWeightNode$stableprop_getter|androidx_compose_foundation_layout_LayoutWeightNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_MutableWindowInsets$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_MutableWindowInsets$stableprop_getter|androidx_compose_foundation_layout_MutableWindowInsets$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValuesImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValuesImpl$stableprop_getter|androidx_compose_foundation_layout_PaddingValuesImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter|androidx_compose_foundation_layout_PaddingValues_Absolute$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowColumnParentData$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowColumnParentData$stableprop_getter|androidx_compose_foundation_layout_RowColumnParentData$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowMeasurePolicy$stableprop_getter|androidx_compose_foundation_layout_RowMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowScopeInstance$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_RowScopeInstance$stableprop_getter|androidx_compose_foundation_layout_RowScopeInstance$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop_getter|androidx_compose_foundation_layout_SiblingsAlignedNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop_getter|androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineBlockNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop_getter|androidx_compose_foundation_layout_SiblingsAlignedNode_WithAlignmentLineNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_ValueInsets$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_ValueInsets$stableprop_getter|androidx_compose_foundation_layout_ValueInsets$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignElement$stableprop_getter|androidx_compose_foundation_layout_VerticalAlignElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_VerticalAlignNode$stableprop_getter|androidx_compose_foundation_layout_VerticalAlignNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop_getter|androidx_compose_foundation_layout_WithAlignmentLineBlockElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.layout/androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop_getter|androidx_compose_foundation_layout_WithAlignmentLineElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.layout/columnMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/columnMeasurePolicy|columnMeasurePolicy(androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/columnMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/columnMeasurementHelper|columnMeasurementHelper(androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.layout.Arrangement.Horizontal;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.foundation.layout/maybeCachedBoxMeasurePolicy(androidx.compose.ui/Alignment, kotlin/Boolean): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/maybeCachedBoxMeasurePolicy|maybeCachedBoxMeasurePolicy(androidx.compose.ui.Alignment;kotlin.Boolean){}[0] -final fun androidx.compose.foundation.layout/rememberBoxMeasurePolicy(androidx.compose.ui/Alignment, kotlin/Boolean): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rememberBoxMeasurePolicy|rememberBoxMeasurePolicy(androidx.compose.ui.Alignment;kotlin.Boolean){}[0] -final fun androidx.compose.foundation.layout/rowMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rowMeasurePolicy|rowMeasurePolicy(androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical){}[0] -final fun androidx.compose.foundation.layout/rowMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rowMeasurementHelper|rowMeasurementHelper(androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.layout.Arrangement.Vertical;kotlin.Int){}[0] -final inline fun androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) // androidx.compose.foundation.layout/Box|Box(androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>){}[0] -final inline fun androidx.compose.foundation.layout/Column(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui/Alignment.Horizontal = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.foundation.layout/Column|Column(androidx.compose.ui.Modifier;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final inline fun androidx.compose.foundation.layout/Row(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui/Alignment.Vertical = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.foundation.layout/Row|Row(androidx.compose.ui.Modifier;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.layout/rememberBoxMeasurePolicy(androidx.compose.ui/Alignment, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rememberBoxMeasurePolicy|rememberBoxMeasurePolicy(androidx.compose.ui.Alignment;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/rowMeasurePolicy(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rowMeasurePolicy|rowMeasurePolicy(androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.layout/rowMeasurementHelper(androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.foundation.layout/rowMeasurementHelper|rowMeasurementHelper(androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.layout.Arrangement.Vertical;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final inline fun androidx.compose.foundation.layout/Box(androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/Boolean, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/Box|Box(androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.Boolean;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final inline fun androidx.compose.foundation.layout/Column(androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui/Alignment.Horizontal?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/Column|Column(androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.Alignment.Horizontal?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final inline fun androidx.compose.foundation.layout/Row(androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui/Alignment.Vertical?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.layout/Row|Row(androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.Alignment.Vertical?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0]
diff --git a/compose/foundation/foundation/bcv/native/current.ignore b/compose/foundation/foundation/bcv/native/current.ignore index 0eff449..af5cea2 100644 --- a/compose/foundation/foundation/bcv/native/current.ignore +++ b/compose/foundation/foundation/bcv/native/current.ignore
@@ -1,3 +1,108 @@ // Baseline format: 1.0 [linuxX64]: Removed declaration androidx.compose.foundation.text/AutoSize from androidx.compose.foundation:foundation -[linuxX64]: Removed declaration androidx.compose.foundation.text/AutoSizeDefaults from androidx.compose.foundation:foundation \ No newline at end of file +[linuxX64]: Removed declaration androidx.compose.foundation.text/AutoSizeDefaults from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsDraggedAsState() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsFocusedAsState() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsHoveredAsState() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsPressedAsState() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.gestures.snapping/SnapPosition) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.gestures.snapping/SnapPosition) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures/rememberDraggable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures/rememberDraggableState(kotlin/Function1<kotlin/Float, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures/rememberScrollableState(kotlin/Function1<kotlin/Float, kotlin/Float>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.gestures/rememberTransformableState(kotlin/Function3<kotlin/Float, androidx.compose.ui.geometry/Offset, kotlin/Float, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.grid/rememberLazyGridState(kotlin/Int, kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.layout/LazyLayoutPinnableItem(kotlin/Any?, kotlin/Int, androidx.compose.foundation.lazy.layout/LazyLayoutPinnedItemList, kotlin/Function0<kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy.staggeredgrid/rememberLazyStaggeredGridState(kotlin/Int, kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical, androidx.compose.ui/Alignment.Horizontal, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier, androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.layout/PaddingValues, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal, androidx.compose.ui/Alignment.Vertical, androidx.compose.foundation.gestures/FlingBehavior, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.lazy/rememberLazyListState(kotlin/Int, kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier, androidx.compose.foundation.layout/PaddingValues, androidx.compose.foundation.pager/PageSize, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Vertical, androidx.compose.foundation.gestures/TargetedFlingBehavior, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection, androidx.compose.foundation.gestures.snapping/SnapPosition, androidx.compose.foundation/OverscrollEffect?, kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier, androidx.compose.foundation.layout/PaddingValues, androidx.compose.foundation.pager/PageSize, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Vertical, androidx.compose.foundation.gestures/TargetedFlingBehavior, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection, androidx.compose.foundation.gestures.snapping/SnapPosition, kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier, androidx.compose.foundation.layout/PaddingValues, androidx.compose.foundation.pager/PageSize, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Horizontal, androidx.compose.foundation.gestures/TargetedFlingBehavior, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection, androidx.compose.foundation.gestures.snapping/SnapPosition, androidx.compose.foundation/OverscrollEffect?, kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier, androidx.compose.foundation.layout/PaddingValues, androidx.compose.foundation.pager/PageSize, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Horizontal, androidx.compose.foundation.gestures/TargetedFlingBehavior, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection, androidx.compose.foundation.gestures.snapping/SnapPosition, kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.pager/rememberPagerState(kotlin/Int, kotlin/Float, kotlin/Function0<kotlin/Int>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text.input/rememberTextFieldState(kotlin/String, androidx.compose.ui.text/TextRange) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text.selection/DisableSelection(kotlin/Function0<kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text.selection/SelectionContainer(androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>, androidx.compose.ui.graphics/ColorProducer?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.foundation.text/TextAutoSize?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.graphics/ColorProducer?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.foundation.text/TextAutoSize?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation/ScrollState) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Brush, kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush, kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Brush, kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush, kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation.text/ClickableText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.text/TextStyle, kotlin/Boolean, androidx.compose.ui.text.style/TextOverflow, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, kotlin/Function1<kotlin/Int, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/String, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Image(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, androidx.compose.ui.layout/ContentScale, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Image(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, androidx.compose.ui.layout/ContentScale, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, androidx.compose.ui.layout/ContentScale, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, androidx.compose.ui.layout/ContentScale, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?, androidx.compose.ui.graphics/FilterQuality) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/isSystemInDarkTheme() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/rememberOverscrollEffect() from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration androidx.compose.foundation/rememberScrollState(kotlin/Int) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin.collections/List<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin/Array<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin.collections/List<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin/Array<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin.collections/List<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin/Array<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin.collections/List<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin/Array<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, kotlin/Function1<#A, kotlin/Any>?, kotlin/Function1<#A, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function2<kotlin/Int, #A, kotlin/Any?>, kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, kotlin/Function2<kotlin/Int, #A, kotlin/Any>?, kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) from androidx.compose.foundation:foundation +[linuxX64]: Removed declaration Decoration(kotlin/Function0<kotlin/Unit>) from androidx.compose.foundation.text.input/TextFieldDecorator +[linuxX64]: Added declaration Decoration(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.foundation.text.input/TextFieldDecorator +[linuxX64]: Removed declaration item(kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration item(kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function1<kotlin/Int, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration stickyHeader(kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration stickyHeader(kotlin/Any?, kotlin/Any?, kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy/LazyListScope +[linuxX64]: Removed declaration rememberUpdatedInstance(androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.foundation/Indication +[linuxX64]: Removed declaration rememberUpdatedInstance(androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.foundation/IndicationNodeFactory +[linuxX64]: Removed declaration item(kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Unit>) from androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Removed declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function1<kotlin/Int, kotlin/Any?>, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Removed declaration stickyHeader(kotlin/Any?, kotlin/Any?, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Added declaration item(kotlin/Any?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Any?, kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Added declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, androidx.compose.foundation.lazy.grid/GridItemSpan>?, kotlin/Function1<kotlin/Int, kotlin/Any?>, kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Added declaration stickyHeader(kotlin/Any?, kotlin/Any?, kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.foundation.lazy.grid/LazyGridScope +[linuxX64]: Removed declaration item(kotlin/Any?, kotlin/Any?, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan?, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Unit>) from androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope +[linuxX64]: Removed declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function1<kotlin/Int, kotlin/Any?>, kotlin/Function1<kotlin/Int, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, kotlin/Unit>) from androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope +[linuxX64]: Added declaration item(kotlin/Any?, kotlin/Any?, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan?, kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope +[linuxX64]: Added declaration items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>?, kotlin/Function1<kotlin/Int, kotlin/Any?>, kotlin/Function1<kotlin/Int, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>?, kotlin/Function4<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope +[linuxX64]: Removed declaration <init>(androidx.compose.ui.text/Placeholder, kotlin/Function1<kotlin/String, kotlin/Unit>) from androidx.compose.foundation.text/InlineTextContent +[linuxX64]: Return type changed from kotlin/Function1<kotlin/String, kotlin/Unit> to kotlin/Function3<kotlin/String, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> for androidx.compose.foundation.text/InlineTextContent.children.<get-children> +[linuxX64]: Removed declaration flingBehavior(androidx.compose.foundation.gestures/AnchoredDraggableState<#A1>, kotlin/Function1<kotlin/Float, kotlin/Float>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>) from androidx.compose.foundation.gestures/AnchoredDraggableDefaults +[linuxX64]: Removed declaration flingBehavior() from androidx.compose.foundation.gestures/ScrollableDefaults +[linuxX64]: Removed declaration overscrollEffect() from androidx.compose.foundation.gestures/ScrollableDefaults +[linuxX64]: Removed declaration flingBehavior(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.pager/PagerSnapDistance, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Float) from androidx.compose.foundation.pager/PagerDefaults +[linuxX64]: Removed declaration pageNestedScrollConnection(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.gestures/Orientation) from androidx.compose.foundation.pager/PagerDefaults \ No newline at end of file
diff --git a/compose/foundation/foundation/bcv/native/current.txt b/compose/foundation/foundation/bcv/native/current.txt index 46e8e3e..20c593d 100644 --- a/compose/foundation/foundation/bcv/native/current.txt +++ b/compose/foundation/foundation/bcv/native/current.txt
@@ -78,7 +78,7 @@ } abstract fun interface androidx.compose.foundation.text.input/TextFieldDecorator { // androidx.compose.foundation.text.input/TextFieldDecorator|null[0] - abstract fun Decoration(kotlin/Function0<kotlin/Unit>) // androidx.compose.foundation.text.input/TextFieldDecorator.Decoration|Decoration(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun Decoration(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.text.input/TextFieldDecorator.Decoration|Decoration(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract fun interface androidx.compose.foundation/MarqueeSpacing { // androidx.compose.foundation/MarqueeSpacing|null[0] @@ -329,7 +329,7 @@ abstract val itemCount // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.itemCount|{}itemCount[0] abstract fun <get-itemCount>(): kotlin/Int // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.itemCount.<get-itemCount>|<get-itemCount>(){}[0] - abstract fun Item(kotlin/Int, kotlin/Any) // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.Item|Item(kotlin.Int;kotlin.Any){}[0] + abstract fun Item(kotlin/Int, kotlin/Any, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.Item|Item(kotlin.Int;kotlin.Any;androidx.compose.runtime.Composer?;kotlin.Int){}[0] open fun getContentType(kotlin/Int): kotlin/Any? // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.getContentType|getContentType(kotlin.Int){}[0] open fun getIndex(kotlin/Any): kotlin/Int // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.getIndex|getIndex(kotlin.Any){}[0] open fun getKey(kotlin/Int): kotlin/Any // androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider.getKey|getKey(kotlin.Int){}[0] @@ -421,12 +421,12 @@ } abstract interface androidx.compose.foundation.lazy/LazyListScope { // androidx.compose.foundation.lazy/LazyListScope|null[0] - open fun item(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.item|item(kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Unit>){}[0] - open fun item(kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.item|item(kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Unit>){}[0] - open fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,kotlin.Unit>){}[0] - open fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,kotlin.Unit>){}[0] - open fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Unit>){}[0] - open fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,kotlin.Unit>){}[0] + open fun item(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.item|item(kotlin.Any?;kotlin.Any?;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + open fun item(kotlin/Any? = ..., kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.item|item(kotlin.Any?;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + open fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + open fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + open fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + open fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyListScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } abstract interface androidx.compose.foundation.pager/PageSize { // androidx.compose.foundation.pager/PageSize|null[0] @@ -494,7 +494,7 @@ } abstract interface androidx.compose.foundation/Indication { // androidx.compose.foundation/Indication|null[0] - open fun rememberUpdatedInstance(androidx.compose.foundation.interaction/InteractionSource): androidx.compose.foundation/IndicationInstance // androidx.compose.foundation/Indication.rememberUpdatedInstance|rememberUpdatedInstance(androidx.compose.foundation.interaction.InteractionSource){}[0] + open fun rememberUpdatedInstance(androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/IndicationInstance // androidx.compose.foundation/Indication.rememberUpdatedInstance|rememberUpdatedInstance(androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.foundation/IndicationInstance { // androidx.compose.foundation/IndicationInstance|null[0] @@ -605,9 +605,9 @@ } sealed interface androidx.compose.foundation.lazy.grid/LazyGridScope { // androidx.compose.foundation.lazy.grid/LazyGridScope|null[0] - abstract fun item(kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.item|item(kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Unit>){}[0] - abstract fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,kotlin.Unit>){}[0] - abstract fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,kotlin.Unit>){}[0] + abstract fun item(kotlin/Any? = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., kotlin/Any? = ..., kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.item|item(kotlin.Any?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Any?;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun stickyHeader(kotlin/Any? = ..., kotlin/Any? = ..., kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyGridScope.stickyHeader|stickyHeader(kotlin.Any?;kotlin.Any?;kotlin.Function4<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } sealed interface androidx.compose.foundation.lazy.layout/LazyLayoutMeasureScope : androidx.compose.ui.layout/MeasureScope { // androidx.compose.foundation.lazy.layout/LazyLayoutMeasureScope|null[0] @@ -655,8 +655,8 @@ } sealed interface androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope { // androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope|null[0] - abstract fun item(kotlin/Any? = ..., kotlin/Any? = ..., androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan? = ..., kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope.item|item(kotlin.Any?;kotlin.Any?;androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan?;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Unit>){}[0] - abstract fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function1<kotlin/Int, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function1<kotlin.Int,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function2<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,kotlin.Unit>){}[0] + abstract fun item(kotlin/Any? = ..., kotlin/Any? = ..., androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan? = ..., kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope.item|item(kotlin.Any?;kotlin.Any?;androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan?;kotlin.Function3<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun items(kotlin/Int, kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., kotlin/Function1<kotlin/Int, kotlin/Any?> = ..., kotlin/Function1<kotlin/Int, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., kotlin/Function4<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope.items|items(kotlin.Int;kotlin.Function1<kotlin.Int,kotlin.Any>?;kotlin.Function1<kotlin.Int,kotlin.Any?>;kotlin.Function1<kotlin.Int,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function4<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } sealed interface androidx.compose.foundation.pager/PageInfo { // androidx.compose.foundation.pager/PageInfo|null[0] @@ -1205,10 +1205,10 @@ } final class androidx.compose.foundation.text/InlineTextContent { // androidx.compose.foundation.text/InlineTextContent|null[0] - constructor <init>(androidx.compose.ui.text/Placeholder, kotlin/Function1<kotlin/String, kotlin/Unit>) // androidx.compose.foundation.text/InlineTextContent.<init>|<init>(androidx.compose.ui.text.Placeholder;kotlin.Function1<kotlin.String,kotlin.Unit>){}[0] + constructor <init>(androidx.compose.ui.text/Placeholder, kotlin/Function3<kotlin/String, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.text/InlineTextContent.<init>|<init>(androidx.compose.ui.text.Placeholder;kotlin.Function3<kotlin.String,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final val children // androidx.compose.foundation.text/InlineTextContent.children|{}children[0] - final fun <get-children>(): kotlin/Function1<kotlin/String, kotlin/Unit> // androidx.compose.foundation.text/InlineTextContent.children.<get-children>|<get-children>(){}[0] + final fun <get-children>(): kotlin/Function3<kotlin/String, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.foundation.text/InlineTextContent.children.<get-children>|<get-children>(){}[0] final val placeholder // androidx.compose.foundation.text/InlineTextContent.placeholder|{}placeholder[0] final fun <get-placeholder>(): androidx.compose.ui.text/Placeholder // androidx.compose.foundation.text/InlineTextContent.placeholder.<get-placeholder>|<get-placeholder>(){}[0] } @@ -1384,12 +1384,12 @@ final val SnapAnimationSpec // androidx.compose.foundation.gestures/AnchoredDraggableDefaults.SnapAnimationSpec|{}SnapAnimationSpec[0] final fun <get-SnapAnimationSpec>(): androidx.compose.animation.core/AnimationSpec<kotlin/Float> // androidx.compose.foundation.gestures/AnchoredDraggableDefaults.SnapAnimationSpec.<get-SnapAnimationSpec>|<get-SnapAnimationSpec>(){}[0] - final fun <#A1: kotlin/Any?> flingBehavior(androidx.compose.foundation.gestures/AnchoredDraggableState<#A1>, kotlin/Function1<kotlin/Float, kotlin/Float> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ...): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.gestures/AnchoredDraggableDefaults.flingBehavior|flingBehavior(androidx.compose.foundation.gestures.AnchoredDraggableState<0:0>;kotlin.Function1<kotlin.Float,kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){0§<kotlin.Any?>}[0] + final fun <#A1: kotlin/Any?> flingBehavior(androidx.compose.foundation.gestures/AnchoredDraggableState<#A1>, kotlin/Function1<kotlin/Float, kotlin/Float>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.gestures/AnchoredDraggableDefaults.flingBehavior|flingBehavior(androidx.compose.foundation.gestures.AnchoredDraggableState<0:0>;kotlin.Function1<kotlin.Float,kotlin.Float>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] } final object androidx.compose.foundation.gestures/ScrollableDefaults { // androidx.compose.foundation.gestures/ScrollableDefaults|null[0] - final fun flingBehavior(): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures/ScrollableDefaults.flingBehavior|flingBehavior(){}[0] - final fun overscrollEffect(): androidx.compose.foundation/OverscrollEffect // androidx.compose.foundation.gestures/ScrollableDefaults.overscrollEffect|overscrollEffect(){}[0] + final fun flingBehavior(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures/ScrollableDefaults.flingBehavior|flingBehavior(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun overscrollEffect(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/OverscrollEffect // androidx.compose.foundation.gestures/ScrollableDefaults.overscrollEffect|overscrollEffect(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun reverseDirection(androidx.compose.ui.unit/LayoutDirection, androidx.compose.foundation.gestures/Orientation, kotlin/Boolean): kotlin/Boolean // androidx.compose.foundation.gestures/ScrollableDefaults.reverseDirection|reverseDirection(androidx.compose.ui.unit.LayoutDirection;androidx.compose.foundation.gestures.Orientation;kotlin.Boolean){}[0] } @@ -1397,8 +1397,8 @@ final const val BeyondViewportPageCount // androidx.compose.foundation.pager/PagerDefaults.BeyondViewportPageCount|{}BeyondViewportPageCount[0] final fun <get-BeyondViewportPageCount>(): kotlin/Int // androidx.compose.foundation.pager/PagerDefaults.BeyondViewportPageCount.<get-BeyondViewportPageCount>|<get-BeyondViewportPageCount>(){}[0] - final fun flingBehavior(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.pager/PagerSnapDistance = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Float = ...): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.pager/PagerDefaults.flingBehavior|flingBehavior(androidx.compose.foundation.pager.PagerState;androidx.compose.foundation.pager.PagerSnapDistance;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Float){}[0] - final fun pageNestedScrollConnection(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.gestures/Orientation): androidx.compose.ui.input.nestedscroll/NestedScrollConnection // androidx.compose.foundation.pager/PagerDefaults.pageNestedScrollConnection|pageNestedScrollConnection(androidx.compose.foundation.pager.PagerState;androidx.compose.foundation.gestures.Orientation){}[0] + final fun flingBehavior(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.pager/PagerSnapDistance?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Float, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.pager/PagerDefaults.flingBehavior|flingBehavior(androidx.compose.foundation.pager.PagerState;androidx.compose.foundation.pager.PagerSnapDistance?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Float;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun pageNestedScrollConnection(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.gestures/Orientation, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.input.nestedscroll/NestedScrollConnection // androidx.compose.foundation.pager/PagerDefaults.pageNestedScrollConnection|pageNestedScrollConnection(androidx.compose.foundation.pager.PagerState;androidx.compose.foundation.gestures.Orientation;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.foundation.text.contextmenu.data/TextContextMenuKeys { // androidx.compose.foundation.text.contextmenu.data/TextContextMenuKeys|null[0] @@ -1434,31 +1434,303 @@ final fun <get-Velocity>(): androidx.compose.ui.unit/Dp // androidx.compose.foundation/MarqueeDefaults.Velocity.<get-Velocity>|<get-Velocity>(){}[0] } +final val androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop // androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop|#static{}androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop[0] +final val androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop // androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop|#static{}androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop[0] +final val androidx.compose.foundation.content/androidx_compose_foundation_content_MediaType$stableprop // androidx.compose.foundation.content/androidx_compose_foundation_content_MediaType$stableprop|#static{}androidx_compose_foundation_content_MediaType$stableprop[0] +final val androidx.compose.foundation.content/androidx_compose_foundation_content_PlatformTransferableContent$stableprop // androidx.compose.foundation.content/androidx_compose_foundation_content_PlatformTransferableContent$stableprop|#static{}androidx_compose_foundation_content_PlatformTransferableContent$stableprop[0] +final val androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentElement$stableprop // androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentElement$stableprop|#static{}androidx_compose_foundation_content_ReceiveContentElement$stableprop[0] +final val androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentNode$stableprop // androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentNode$stableprop|#static{}androidx_compose_foundation_content_ReceiveContentNode$stableprop[0] +final val androidx.compose.foundation.content/androidx_compose_foundation_content_TransferableContent$stableprop // androidx.compose.foundation.content/androidx_compose_foundation_content_TransferableContent$stableprop|#static{}androidx_compose_foundation_content_TransferableContent$stableprop[0] +final val androidx.compose.foundation.contextmenu/androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop // androidx.compose.foundation.contextmenu/androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop|#static{}androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop[0] +final val androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop|#static{}androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop[0] +final val androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop|#static{}androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop[0] +final val androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop|#static{}androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop[0] +final val androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop|#static{}androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop[0] +final val androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop|#static{}androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop[0] +final val androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop|#static{}androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop[0] +final val androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop|#static{}androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop[0] final val androidx.compose.foundation.gestures/LocalBringIntoViewSpec // androidx.compose.foundation.gestures/LocalBringIntoViewSpec|{}LocalBringIntoViewSpec[0] final fun <get-LocalBringIntoViewSpec>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation.gestures/BringIntoViewSpec> // androidx.compose.foundation.gestures/LocalBringIntoViewSpec.<get-LocalBringIntoViewSpec>|<get-LocalBringIntoViewSpec>(){}[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop|#static{}androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop|#static{}androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop|#static{}androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop|#static{}androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode$stableprop|#static{}androidx_compose_foundation_gestures_ContentInViewNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop|#static{}androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop|#static{}androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent$stableprop|#static{}androidx_compose_foundation_gestures_DragEvent$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop|#static{}androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop|#static{}androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop|#static{}androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop|#static{}androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragGestureNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragGestureNode$stableprop|#static{}androidx_compose_foundation_gestures_DragGestureNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DElement$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DElement$stableprop|#static{}androidx_compose_foundation_gestures_Draggable2DElement$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DNode$stableprop|#static{}androidx_compose_foundation_gestures_Draggable2DNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop|#static{}androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableElement$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableElement$stableprop|#static{}androidx_compose_foundation_gestures_DraggableElement$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableNode$stableprop|#static{}androidx_compose_foundation_gestures_DraggableNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_FlingCancellationException$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_FlingCancellationException$stableprop|#static{}androidx_compose_foundation_gestures_FlingCancellationException$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_GestureCancellationException$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_GestureCancellationException$stableprop|#static{}androidx_compose_foundation_gestures_GestureCancellationException$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult$stableprop|#static{}androidx_compose_foundation_gestures_LongPressResult$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop|#static{}androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Released$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Released$stableprop|#static{}androidx_compose_foundation_gestures_LongPressResult_Released$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Success$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Success$stableprop|#static{}androidx_compose_foundation_gestures_LongPressResult_Success$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop|#static{}androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop|#static{}androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Scrollable2DNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Scrollable2DNode$stableprop|#static{}androidx_compose_foundation_gestures_Scrollable2DNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop|#static{}androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableDefaults$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableDefaults$stableprop|#static{}androidx_compose_foundation_gestures_ScrollableDefaults$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop|#static{}androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNode$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNode$stableprop|#static{}androidx_compose_foundation_gestures_ScrollableNode$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollingLogic$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollingLogic$stableprop|#static{}androidx_compose_foundation_gestures_ScrollingLogic$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TouchSlopDetector$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TouchSlopDetector$stableprop|#static{}androidx_compose_foundation_gestures_TouchSlopDetector$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop|#static{}androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop|#static{}androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop|#static{}androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop[0] +final val androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop|#static{}androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop|#static{}androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Start$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Start$stableprop|#static{}androidx_compose_foundation_interaction_DragInteraction_Start$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop|#static{}androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop|#static{}androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop|#static{}androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop|#static{}androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop|#static{}androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop|#static{}androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Press$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Press$stableprop|#static{}androidx_compose_foundation_interaction_PressInteraction_Press$stableprop[0] +final val androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Release$stableprop // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Release$stableprop|#static{}androidx_compose_foundation_interaction_PressInteraction_Release$stableprop[0] +final val androidx.compose.foundation.internal/androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.foundation.internal/androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop|#static{}androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop|#static{}androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop|#static{}androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop[0] +final val androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridState$stableprop // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridState$stableprop|#static{}androidx_compose_foundation_lazy_grid_LazyGridState$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_Averages$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_Averages$stableprop|#static{}androidx_compose_foundation_lazy_layout_Averages$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop|#static{}androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop|#static{}androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop|#static{}androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop|#static{}androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop|#static{}androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop|#static{}androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop|#static{}androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop[0] +final val androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop|#static{}androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop[0] +final val androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop|#static{}androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop|#static{}androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop|#static{}androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop|#static{}androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListInterval$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListInterval$stableprop|#static{}androidx_compose_foundation_lazy_LazyListInterval$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop|#static{}androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop|#static{}androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop|#static{}androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop|#static{}androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop|#static{}androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop|#static{}androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop[0] +final val androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListState$stableprop // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListState$stableprop|#static{}androidx_compose_foundation_lazy_LazyListState$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_MeasuredPage$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_MeasuredPage$stableprop|#static{}androidx_compose_foundation_pager_MeasuredPage$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fill$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fill$stableprop|#static{}androidx_compose_foundation_pager_PageSize_Fill$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fixed$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fixed$stableprop|#static{}androidx_compose_foundation_pager_PageSize_Fixed$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop|#static{}androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDebugConfig$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDebugConfig$stableprop|#static{}androidx_compose_foundation_pager_PagerDebugConfig$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDefaults$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDefaults$stableprop|#static{}androidx_compose_foundation_pager_PagerDefaults$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerIntervalContent$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerIntervalContent$stableprop|#static{}androidx_compose_foundation_pager_PagerIntervalContent$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop|#static{}androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerMeasureResult$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerMeasureResult$stableprop|#static{}androidx_compose_foundation_pager_PagerMeasureResult$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScopeImpl$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScopeImpl$stableprop|#static{}androidx_compose_foundation_pager_PagerScopeImpl$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScrollPosition$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScrollPosition$stableprop|#static{}androidx_compose_foundation_pager_PagerScrollPosition$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop|#static{}androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop[0] +final val androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerState$stableprop // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerState$stableprop|#static{}androidx_compose_foundation_pager_PagerState$stableprop[0] +final val androidx.compose.foundation.platform/androidx_compose_foundation_platform_SynchronizedObject$stableprop // androidx.compose.foundation.platform/androidx_compose_foundation_platform_SynchronizedObject$stableprop|#static{}androidx_compose_foundation_platform_SynchronizedObject$stableprop[0] +final val androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop // androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop|#static{}androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop[0] +final val androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop // androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop|#static{}androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop[0] final val androidx.compose.foundation.shape/CircleShape // androidx.compose.foundation.shape/CircleShape|{}CircleShape[0] final fun <get-CircleShape>(): androidx.compose.foundation.shape/RoundedCornerShape // androidx.compose.foundation.shape/CircleShape.<get-CircleShape>|<get-CircleShape>(){}[0] final val androidx.compose.foundation.shape/ZeroCornerSize // androidx.compose.foundation.shape/ZeroCornerSize|{}ZeroCornerSize[0] final fun <get-ZeroCornerSize>(): androidx.compose.foundation.shape/CornerSize // androidx.compose.foundation.shape/ZeroCornerSize.<get-ZeroCornerSize>|<get-ZeroCornerSize>(){}[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop|#static{}androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop|#static{}androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_CornerBasedShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_CornerBasedShape$stableprop|#static{}androidx_compose_foundation_shape_CornerBasedShape$stableprop[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_CutCornerShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_CutCornerShape$stableprop|#static{}androidx_compose_foundation_shape_CutCornerShape$stableprop[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_GenericShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_GenericShape$stableprop|#static{}androidx_compose_foundation_shape_GenericShape$stableprop[0] +final val androidx.compose.foundation.shape/androidx_compose_foundation_shape_RoundedCornerShape$stableprop // androidx.compose.foundation.shape/androidx_compose_foundation_shape_RoundedCornerShape$stableprop|#static{}androidx_compose_foundation_shape_RoundedCornerShape$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.builder/androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop // androidx.compose.foundation.text.contextmenu.builder/androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop|#static{}androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop|#static{}androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop|#static{}androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop|#static{}androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop|#static{}androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop|#static{}androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop|#static{}androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop|#static{}androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop[0] +final val androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop|#static{}androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop[0] final val androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuDropdownProvider // androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuDropdownProvider|{}LocalTextContextMenuDropdownProvider[0] final fun <get-LocalTextContextMenuDropdownProvider>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation.text.contextmenu.provider/TextContextMenuProvider?> // androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuDropdownProvider.<get-LocalTextContextMenuDropdownProvider>|<get-LocalTextContextMenuDropdownProvider>(){}[0] final val androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuToolbarProvider // androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuToolbarProvider|{}LocalTextContextMenuToolbarProvider[0] final fun <get-LocalTextContextMenuToolbarProvider>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation.text.contextmenu.provider/TextContextMenuProvider?> // androidx.compose.foundation.text.contextmenu.provider/LocalTextContextMenuToolbarProvider.<get-LocalTextContextMenuToolbarProvider>|<get-LocalTextContextMenuToolbarProvider>(){}[0] +final val androidx.compose.foundation.text.contextmenu.provider/androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop // androidx.compose.foundation.text.contextmenu.provider/androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop|#static{}androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop[0] +final val androidx.compose.foundation.text.handwriting/androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop // androidx.compose.foundation.text.handwriting/androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop|#static{}androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop|#static{}androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop[0] +final val androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop|#static{}androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop[0] +final val androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop|#static{}androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop[0] +final val androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop|#static{}androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop[0] +final val androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop // androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop|#static{}androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop[0] +final val androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop // androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop|#static{}androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop|#static{}androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop|#static{}androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop|#static{}androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop|#static{}androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop|#static{}androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop|#static{}androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop|#static{}androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop|#static{}androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop|#static{}androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop[0] +final val androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop|#static{}androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldBuffer$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldBuffer$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldBuffer$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldState$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop|#static{}androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager$stableprop|#static{}androidx_compose_foundation_text_input_TextUndoManager$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop|#static{}androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop[0] +final val androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_UndoState$stableprop // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_UndoState$stableprop|#static{}androidx_compose_foundation_text_input_UndoState$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop|#static{}androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop|#static{}androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop|#static{}androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop|#static{}androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop|#static{}androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectionController$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectionController$stableprop|#static{}androidx_compose_foundation_text_modifiers_SelectionController$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop|#static{}androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop|#static{}androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop[0] +final val androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop|#static{}androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop[0] final val androidx.compose.foundation.text.selection/LocalTextSelectionColors // androidx.compose.foundation.text.selection/LocalTextSelectionColors|{}LocalTextSelectionColors[0] final fun <get-LocalTextSelectionColors>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation.text.selection/TextSelectionColors> // androidx.compose.foundation.text.selection/LocalTextSelectionColors.<get-LocalTextSelectionColors>|<get-LocalTextSelectionColors>(){}[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop|#static{}androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop|#static{}androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop|#static{}androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectableInfo$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectableInfo$stableprop|#static{}androidx_compose_foundation_text_selection_SelectableInfo$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection$stableprop|#static{}androidx_compose_foundation_text_selection_Selection$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop|#static{}androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop|#static{}androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionManager$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionManager$stableprop|#static{}androidx_compose_foundation_text_selection_SelectionManager$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop|#static{}androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop|#static{}androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop|#static{}androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop|#static{}androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop|#static{}androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop|#static{}androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop[0] +final val androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextSelectionColors$stableprop // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextSelectionColors$stableprop|#static{}androidx_compose_foundation_text_selection_TextSelectionColors$stableprop[0] final val androidx.compose.foundation.text/LocalAutofillHighlightColor // androidx.compose.foundation.text/LocalAutofillHighlightColor|{}LocalAutofillHighlightColor[0] final fun <get-LocalAutofillHighlightColor>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.graphics/Color> // androidx.compose.foundation.text/LocalAutofillHighlightColor.<get-LocalAutofillHighlightColor>|<get-LocalAutofillHighlightColor>(){}[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_DeadKeyCombiner$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_DeadKeyCombiner$stableprop|#static{}androidx_compose_foundation_text_DeadKeyCombiner$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_InlineTextContent$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_InlineTextContent$stableprop|#static{}androidx_compose_foundation_text_InlineTextContent$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActionRunner$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActionRunner$stableprop|#static{}androidx_compose_foundation_text_KeyboardActionRunner$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActions$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActions$stableprop|#static{}androidx_compose_foundation_text_KeyboardActions$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardOptions$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardOptions$stableprop|#static{}androidx_compose_foundation_text_KeyboardOptions$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_LegacyTextFieldState$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_LegacyTextFieldState$stableprop|#static{}androidx_compose_foundation_text_LegacyTextFieldState$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop|#static{}androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_MappedKeys$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_MappedKeys$stableprop|#static{}androidx_compose_foundation_text_MappedKeys$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_PasswordInputTransformation$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_PasswordInputTransformation$stableprop|#static{}androidx_compose_foundation_text_PasswordInputTransformation$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_SecureTextFieldController$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_SecureTextFieldController$stableprop|#static{}androidx_compose_foundation_text_SecureTextFieldController$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop|#static{}androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextDelegate$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextDelegate$stableprop|#static{}androidx_compose_foundation_text_TextDelegate$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldDelegate$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldDelegate$stableprop|#static{}androidx_compose_foundation_text_TextFieldDelegate$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldKeyInput$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldKeyInput$stableprop|#static{}androidx_compose_foundation_text_TextFieldKeyInput$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop|#static{}androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextLayoutResultProxy$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextLayoutResultProxy$stableprop|#static{}androidx_compose_foundation_text_TextLayoutResultProxy$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextLinkScope$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextLinkScope$stableprop|#static{}androidx_compose_foundation_text_TextLinkScope$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop|#static{}androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop|#static{}androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop|#static{}androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop[0] +final val androidx.compose.foundation.text/androidx_compose_foundation_text_UndoManager$stableprop // androidx.compose.foundation.text/androidx_compose_foundation_text_UndoManager$stableprop|#static{}androidx_compose_foundation_text_UndoManager$stableprop[0] final val androidx.compose.foundation.text/isTypedEvent // androidx.compose.foundation.text/isTypedEvent|@androidx.compose.ui.input.key.KeyEvent{}isTypedEvent[0] final fun (androidx.compose.ui.input.key/KeyEvent).<get-isTypedEvent>(): kotlin/Boolean // androidx.compose.foundation.text/isTypedEvent.<get-isTypedEvent>|<get-isTypedEvent>@androidx.compose.ui.input.key.KeyEvent(){}[0] final val androidx.compose.foundation/LocalIndication // androidx.compose.foundation/LocalIndication|{}LocalIndication[0] final fun <get-LocalIndication>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation/Indication> // androidx.compose.foundation/LocalIndication.<get-LocalIndication>|<get-LocalIndication>(){}[0] final val androidx.compose.foundation/LocalOverscrollFactory // androidx.compose.foundation/LocalOverscrollFactory|{}LocalOverscrollFactory[0] final fun <get-LocalOverscrollFactory>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.foundation/OverscrollFactory?> // androidx.compose.foundation/LocalOverscrollFactory.<get-LocalOverscrollFactory>|<get-LocalOverscrollFactory>(){}[0] +final val androidx.compose.foundation/androidx_compose_foundation_AbstractClickableNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_AbstractClickableNode$stableprop|#static{}androidx_compose_foundation_AbstractClickableNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_AtomicLong$stableprop // androidx.compose.foundation/androidx_compose_foundation_AtomicLong$stableprop|#static{}androidx_compose_foundation_AtomicLong$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_AtomicReference$stableprop // androidx.compose.foundation/androidx_compose_foundation_AtomicReference$stableprop|#static{}androidx_compose_foundation_AtomicReference$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_BasicTooltipDefaults$stableprop // androidx.compose.foundation/androidx_compose_foundation_BasicTooltipDefaults$stableprop|#static{}androidx_compose_foundation_BasicTooltipDefaults$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_BasicTooltipStrings$stableprop // androidx.compose.foundation/androidx_compose_foundation_BasicTooltipStrings$stableprop|#static{}androidx_compose_foundation_BasicTooltipStrings$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_BorderModifierNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_BorderModifierNode$stableprop|#static{}androidx_compose_foundation_BorderModifierNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_BorderModifierNodeElement$stableprop // androidx.compose.foundation/androidx_compose_foundation_BorderModifierNodeElement$stableprop|#static{}androidx_compose_foundation_BorderModifierNodeElement$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_BorderStroke$stableprop // androidx.compose.foundation/androidx_compose_foundation_BorderStroke$stableprop|#static{}androidx_compose_foundation_BorderStroke$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_ClickableNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_ClickableNode$stableprop|#static{}androidx_compose_foundation_ClickableNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop // androidx.compose.foundation/androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop|#static{}androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_ComposeFoundationFlags$stableprop // androidx.compose.foundation/androidx_compose_foundation_ComposeFoundationFlags$stableprop|#static{}androidx_compose_foundation_ComposeFoundationFlags$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_FocusableNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_FocusableNode$stableprop|#static{}androidx_compose_foundation_FocusableNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_FocusedBoundsObserverNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_FocusedBoundsObserverNode$stableprop|#static{}androidx_compose_foundation_FocusedBoundsObserverNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_MarqueeDefaults$stableprop // androidx.compose.foundation/androidx_compose_foundation_MarqueeDefaults$stableprop|#static{}androidx_compose_foundation_MarqueeDefaults$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_MutationInterruptedException$stableprop // androidx.compose.foundation/androidx_compose_foundation_MutationInterruptedException$stableprop|#static{}androidx_compose_foundation_MutationInterruptedException$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_MutatorMutex$stableprop // androidx.compose.foundation/androidx_compose_foundation_MutatorMutex$stableprop|#static{}androidx_compose_foundation_MutatorMutex$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_ScrollNode$stableprop // androidx.compose.foundation/androidx_compose_foundation_ScrollNode$stableprop|#static{}androidx_compose_foundation_ScrollNode$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_ScrollState$stableprop // androidx.compose.foundation/androidx_compose_foundation_ScrollState$stableprop|#static{}androidx_compose_foundation_ScrollState$stableprop[0] +final val androidx.compose.foundation/androidx_compose_foundation_ScrollingLayoutElement$stableprop // androidx.compose.foundation/androidx_compose_foundation_ScrollingLayoutElement$stableprop|#static{}androidx_compose_foundation_ScrollingLayoutElement$stableprop[0] -final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsDraggedAsState(): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsDraggedAsState|collectIsDraggedAsState@androidx.compose.foundation.interaction.InteractionSource(){}[0] -final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsFocusedAsState(): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsFocusedAsState|collectIsFocusedAsState@androidx.compose.foundation.interaction.InteractionSource(){}[0] -final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsHoveredAsState(): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsHoveredAsState|collectIsHoveredAsState@androidx.compose.foundation.interaction.InteractionSource(){}[0] -final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsPressedAsState(): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsPressedAsState|collectIsPressedAsState@androidx.compose.foundation.interaction.InteractionSource(){}[0] +final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsDraggedAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsDraggedAsState|collectIsDraggedAsState@androidx.compose.foundation.interaction.InteractionSource(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsFocusedAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsFocusedAsState|collectIsFocusedAsState@androidx.compose.foundation.interaction.InteractionSource(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsHoveredAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsHoveredAsState|collectIsHoveredAsState@androidx.compose.foundation.interaction.InteractionSource(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.compose.foundation.interaction/InteractionSource).androidx.compose.foundation.interaction/collectIsPressedAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<kotlin/Boolean> // androidx.compose.foundation.interaction/collectIsPressedAsState|collectIsPressedAsState@androidx.compose.foundation.interaction.InteractionSource(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun (androidx.compose.foundation.text.input/InputTransformation).androidx.compose.foundation.text.input/allCaps(androidx.compose.ui.text.intl/Locale): androidx.compose.foundation.text.input/InputTransformation // androidx.compose.foundation.text.input/allCaps|allCaps@androidx.compose.foundation.text.input.InputTransformation(androidx.compose.ui.text.intl.Locale){}[0] final fun (androidx.compose.foundation.text.input/InputTransformation).androidx.compose.foundation.text.input/byValue(kotlin/Function2<kotlin/CharSequence, kotlin/CharSequence, kotlin/CharSequence>): androidx.compose.foundation.text.input/InputTransformation // androidx.compose.foundation.text.input/byValue|byValue@androidx.compose.foundation.text.input.InputTransformation(kotlin.Function2<kotlin.CharSequence,kotlin.CharSequence,kotlin.CharSequence>){}[0] final fun (androidx.compose.foundation.text.input/InputTransformation).androidx.compose.foundation.text.input/maxLength(kotlin/Int): androidx.compose.foundation.text.input/InputTransformation // androidx.compose.foundation.text.input/maxLength|maxLength@androidx.compose.foundation.text.input.InputTransformation(kotlin.Int){}[0] @@ -1537,55 +1809,205 @@ final fun <#A: kotlin/Any?> (androidx.compose.ui/Modifier).androidx.compose.foundation.gestures/anchoredDraggable(androidx.compose.foundation.gestures/AnchoredDraggableState<#A>, kotlin/Boolean, androidx.compose.foundation.gestures/Orientation, kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Boolean = ..., androidx.compose.foundation.gestures/FlingBehavior? = ...): androidx.compose.ui/Modifier // androidx.compose.foundation.gestures/anchoredDraggable|anchoredDraggable@androidx.compose.ui.Modifier(androidx.compose.foundation.gestures.AnchoredDraggableState<0:0>;kotlin.Boolean;androidx.compose.foundation.gestures.Orientation;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.foundation.OverscrollEffect?;kotlin.Boolean;androidx.compose.foundation.gestures.FlingBehavior?){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.foundation.gestures/AnchoredDraggableState(#A, androidx.compose.foundation.gestures/DraggableAnchors<#A>, kotlin/Function1<kotlin/Float, kotlin/Float>, kotlin/Function0<kotlin/Float>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>, kotlin/Function1<#A, kotlin/Boolean> = ...): androidx.compose.foundation.gestures/AnchoredDraggableState<#A> // androidx.compose.foundation.gestures/AnchoredDraggableState|AnchoredDraggableState(0:0;androidx.compose.foundation.gestures.DraggableAnchors<0:0>;kotlin.Function1<kotlin.Float,kotlin.Float>;kotlin.Function0<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;kotlin.Function1<0:0,kotlin.Boolean>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.foundation.gestures/AnchoredDraggableState(#A, kotlin/Function1<kotlin/Float, kotlin/Float>, kotlin/Function0<kotlin/Float>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>, kotlin/Function1<#A, kotlin/Boolean> = ...): androidx.compose.foundation.gestures/AnchoredDraggableState<#A> // androidx.compose.foundation.gestures/AnchoredDraggableState|AnchoredDraggableState(0:0;kotlin.Function1<kotlin.Float,kotlin.Float>;kotlin.Function0<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;kotlin.Function1<0:0,kotlin.Boolean>){0§<kotlin.Any?>}[0] +final fun androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop_getter|androidx_compose_foundation_content_internal_DynamicReceiveContentConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content.internal/androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop_getter|androidx_compose_foundation_content_internal_ReceiveContentConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content/androidx_compose_foundation_content_MediaType$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content/androidx_compose_foundation_content_MediaType$stableprop_getter|androidx_compose_foundation_content_MediaType$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content/androidx_compose_foundation_content_PlatformTransferableContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content/androidx_compose_foundation_content_PlatformTransferableContent$stableprop_getter|androidx_compose_foundation_content_PlatformTransferableContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentElement$stableprop_getter|androidx_compose_foundation_content_ReceiveContentElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content/androidx_compose_foundation_content_ReceiveContentNode$stableprop_getter|androidx_compose_foundation_content_ReceiveContentNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.content/androidx_compose_foundation_content_TransferableContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.content/androidx_compose_foundation_content_TransferableContent$stableprop_getter|androidx_compose_foundation_content_TransferableContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.contextmenu/androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.contextmenu/androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop_getter|androidx_compose_foundation_contextmenu_ContextMenuPopupPositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop_getter(): kotlin/Int // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop_getter|androidx_compose_foundation_draganddrop_CacheDrawScopeDragShadowCallback$stableprop_getter(){}[0] +final fun androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop_getter|androidx_compose_foundation_draganddrop_DragAndDropSourceDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.draganddrop/androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop_getter|androidx_compose_foundation_draganddrop_DragAndDropSourceNode$stableprop_getter(){}[0] final fun androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider(androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.gestures.snapping/SnapPosition = ...): androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider // androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider|SnapLayoutInfoProvider(androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.gestures.snapping.SnapPosition){}[0] final fun androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider(androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.gestures.snapping/SnapPosition = ...): androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider // androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider|SnapLayoutInfoProvider(androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.gestures.snapping.SnapPosition){}[0] -final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.gestures.snapping.SnapLayoutInfoProvider){}[0] -final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.gestures.snapping/SnapPosition = ...): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.gestures.snapping.SnapPosition){}[0] -final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.gestures.snapping/SnapPosition = ...): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.gestures.snapping.SnapPosition){}[0] +final fun androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop_getter|androidx_compose_foundation_gestures_snapping_SnapFlingBehavior$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop_getter|androidx_compose_foundation_gestures_snapping_SnapPosition_Center$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop_getter|androidx_compose_foundation_gestures_snapping_SnapPosition_End$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures.snapping/androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop_getter|androidx_compose_foundation_gestures_snapping_SnapPosition_Start$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.gestures.snapping.SnapLayoutInfoProvider;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.gestures.snapping/SnapPosition?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.gestures.snapping.SnapPosition?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior(androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.gestures.snapping/SnapPosition?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/FlingBehavior // androidx.compose.foundation.gestures.snapping/rememberSnapFlingBehavior|rememberSnapFlingBehavior(androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.gestures.snapping.SnapPosition?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.gestures.snapping/snapFlingBehavior(androidx.compose.foundation.gestures.snapping/SnapLayoutInfoProvider, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.foundation.gestures.snapping/snapFlingBehavior|snapFlingBehavior(androidx.compose.foundation.gestures.snapping.SnapLayoutInfoProvider;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){}[0] final fun androidx.compose.foundation.gestures/Draggable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>): androidx.compose.foundation.gestures/Draggable2DState // androidx.compose.foundation.gestures/Draggable2DState|Draggable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>){}[0] final fun androidx.compose.foundation.gestures/DraggableState(kotlin/Function1<kotlin/Float, kotlin/Unit>): androidx.compose.foundation.gestures/DraggableState // androidx.compose.foundation.gestures/DraggableState|DraggableState(kotlin.Function1<kotlin.Float,kotlin.Unit>){}[0] final fun androidx.compose.foundation.gestures/Scrollable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, androidx.compose.ui.geometry/Offset>): androidx.compose.foundation.gestures/Scrollable2DState // androidx.compose.foundation.gestures/Scrollable2DState|Scrollable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,androidx.compose.ui.geometry.Offset>){}[0] final fun androidx.compose.foundation.gestures/ScrollableState(kotlin/Function1<kotlin/Float, kotlin/Float>): androidx.compose.foundation.gestures/ScrollableState // androidx.compose.foundation.gestures/ScrollableState|ScrollableState(kotlin.Function1<kotlin.Float,kotlin.Float>){}[0] final fun androidx.compose.foundation.gestures/TransformableState(kotlin/Function3<kotlin/Float, androidx.compose.ui.geometry/Offset, kotlin/Float, kotlin/Unit>): androidx.compose.foundation.gestures/TransformableState // androidx.compose.foundation.gestures/TransformableState|TransformableState(kotlin.Function3<kotlin.Float,androidx.compose.ui.geometry.Offset,kotlin.Float,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.gestures/rememberDraggable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>): androidx.compose.foundation.gestures/Draggable2DState // androidx.compose.foundation.gestures/rememberDraggable2DState|rememberDraggable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.gestures/rememberDraggableState(kotlin/Function1<kotlin/Float, kotlin/Unit>): androidx.compose.foundation.gestures/DraggableState // androidx.compose.foundation.gestures/rememberDraggableState|rememberDraggableState(kotlin.Function1<kotlin.Float,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.gestures/rememberScrollable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, androidx.compose.ui.geometry/Offset>): androidx.compose.foundation.gestures/Scrollable2DState // androidx.compose.foundation.gestures/rememberScrollable2DState|rememberScrollable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,androidx.compose.ui.geometry.Offset>){}[0] -final fun androidx.compose.foundation.gestures/rememberScrollableState(kotlin/Function1<kotlin/Float, kotlin/Float>): androidx.compose.foundation.gestures/ScrollableState // androidx.compose.foundation.gestures/rememberScrollableState|rememberScrollableState(kotlin.Function1<kotlin.Float,kotlin.Float>){}[0] -final fun androidx.compose.foundation.gestures/rememberTransformableState(kotlin/Function3<kotlin/Float, androidx.compose.ui.geometry/Offset, kotlin/Float, kotlin/Unit>): androidx.compose.foundation.gestures/TransformableState // androidx.compose.foundation.gestures/rememberTransformableState|rememberTransformableState(kotlin.Function3<kotlin.Float,androidx.compose.ui.geometry.Offset,kotlin.Float,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop_getter|androidx_compose_foundation_gestures_AnchoredDragFinishedSignal$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop_getter|androidx_compose_foundation_gestures_AnchoredDraggableDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop_getter|androidx_compose_foundation_gestures_AnchoredDraggableState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop_getter|androidx_compose_foundation_gestures_BringIntoViewRequestPriorityQueue$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode$stableprop_getter|androidx_compose_foundation_gestures_ContentInViewNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop_getter|androidx_compose_foundation_gestures_ContentInViewNode_Request$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop_getter|androidx_compose_foundation_gestures_DefaultFlingBehavior$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent$stableprop_getter|androidx_compose_foundation_gestures_DragEvent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop_getter|androidx_compose_foundation_gestures_DragEvent_DragCancelled$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop_getter|androidx_compose_foundation_gestures_DragEvent_DragDelta$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop_getter|androidx_compose_foundation_gestures_DragEvent_DragStarted$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop_getter|androidx_compose_foundation_gestures_DragEvent_DragStopped$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragGestureNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DragGestureNode$stableprop_getter|androidx_compose_foundation_gestures_DragGestureNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DElement$stableprop_getter|androidx_compose_foundation_gestures_Draggable2DElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Draggable2DNode$stableprop_getter|androidx_compose_foundation_gestures_Draggable2DNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop_getter|androidx_compose_foundation_gestures_DraggableAnchorsConfig$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableElement$stableprop_getter|androidx_compose_foundation_gestures_DraggableElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_DraggableNode$stableprop_getter|androidx_compose_foundation_gestures_DraggableNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_FlingCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_FlingCancellationException$stableprop_getter|androidx_compose_foundation_gestures_FlingCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_GestureCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_GestureCancellationException$stableprop_getter|androidx_compose_foundation_gestures_GestureCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult$stableprop_getter|androidx_compose_foundation_gestures_LongPressResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop_getter|androidx_compose_foundation_gestures_LongPressResult_Canceled$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Released$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Released$stableprop_getter|androidx_compose_foundation_gestures_LongPressResult_Released$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Success$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_LongPressResult_Success$stableprop_getter|androidx_compose_foundation_gestures_LongPressResult_Success$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop_getter|androidx_compose_foundation_gestures_MouseWheelScrollingLogic$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop_getter|androidx_compose_foundation_gestures_PressGestureScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Scrollable2DNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_Scrollable2DNode$stableprop_getter|androidx_compose_foundation_gestures_Scrollable2DNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop_getter|androidx_compose_foundation_gestures_ScrollableContainerNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableDefaults$stableprop_getter|androidx_compose_foundation_gestures_ScrollableDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop_getter|androidx_compose_foundation_gestures_ScrollableNestedScrollConnection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollableNode$stableprop_getter|androidx_compose_foundation_gestures_ScrollableNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollingLogic$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_ScrollingLogic$stableprop_getter|androidx_compose_foundation_gestures_ScrollingLogic$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TouchSlopDetector$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TouchSlopDetector$stableprop_getter|androidx_compose_foundation_gestures_TouchSlopDetector$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop_getter|androidx_compose_foundation_gestures_TransformEvent_TransformDelta$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop_getter|androidx_compose_foundation_gestures_TransformEvent_TransformStarted$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop_getter|androidx_compose_foundation_gestures_TransformEvent_TransformStopped$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.gestures/androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop_getter|androidx_compose_foundation_gestures_UpdatableAnimationState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.gestures/rememberDraggable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/Draggable2DState // androidx.compose.foundation.gestures/rememberDraggable2DState|rememberDraggable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures/rememberDraggableState(kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/DraggableState // androidx.compose.foundation.gestures/rememberDraggableState|rememberDraggableState(kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures/rememberScrollable2DState(kotlin/Function1<androidx.compose.ui.geometry/Offset, androidx.compose.ui.geometry/Offset>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/Scrollable2DState // androidx.compose.foundation.gestures/rememberScrollable2DState|rememberScrollable2DState(kotlin.Function1<androidx.compose.ui.geometry.Offset,androidx.compose.ui.geometry.Offset>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures/rememberScrollableState(kotlin/Function1<kotlin/Float, kotlin/Float>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/ScrollableState // androidx.compose.foundation.gestures/rememberScrollableState|rememberScrollableState(kotlin.Function1<kotlin.Float,kotlin.Float>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.gestures/rememberTransformableState(kotlin/Function3<kotlin/Float, androidx.compose.ui.geometry/Offset, kotlin/Float, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/TransformableState // androidx.compose.foundation.gestures/rememberTransformableState|rememberTransformableState(kotlin.Function3<kotlin.Float,androidx.compose.ui.geometry.Offset,kotlin.Float,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.foundation.interaction/MutableInteractionSource(): androidx.compose.foundation.interaction/MutableInteractionSource // androidx.compose.foundation.interaction/MutableInteractionSource|MutableInteractionSource(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop_getter|androidx_compose_foundation_interaction_DragInteraction_Cancel$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Start$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Start$stableprop_getter|androidx_compose_foundation_interaction_DragInteraction_Start$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop_getter|androidx_compose_foundation_interaction_DragInteraction_Stop$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop_getter|androidx_compose_foundation_interaction_FocusInteraction_Focus$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop_getter|androidx_compose_foundation_interaction_FocusInteraction_Unfocus$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop_getter|androidx_compose_foundation_interaction_HoverInteraction_Enter$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop_getter|androidx_compose_foundation_interaction_HoverInteraction_Exit$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop_getter|androidx_compose_foundation_interaction_PressInteraction_Cancel$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Press$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Press$stableprop_getter|androidx_compose_foundation_interaction_PressInteraction_Press$stableprop_getter(){}[0] +final fun androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Release$stableprop_getter(): kotlin/Int // androidx.compose.foundation.interaction/androidx_compose_foundation_interaction_PressInteraction_Release$stableprop_getter|androidx_compose_foundation_interaction_PressInteraction_Release$stableprop_getter(){}[0] +final fun androidx.compose.foundation.internal/androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.foundation.internal/androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_foundation_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] final fun androidx.compose.foundation.lazy.grid/GridItemSpan(kotlin/Int): androidx.compose.foundation.lazy.grid/GridItemSpan // androidx.compose.foundation.lazy.grid/GridItemSpan|GridItemSpan(kotlin.Int){}[0] -final fun androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.grid/LazyGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyHorizontalGrid|LazyHorizontalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.grid/LazyGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyHorizontalGrid|LazyHorizontalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.grid/LazyGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.grid/LazyHorizontalGrid|LazyHorizontalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.grid.LazyGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.grid/LazyHorizontalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.grid/LazyGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.grid/LazyHorizontalGrid|LazyHorizontalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.grid.LazyGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.lazy.grid/LazyLayoutScrollScope(androidx.compose.foundation.lazy.grid/LazyGridState, androidx.compose.foundation.gestures/ScrollScope): androidx.compose.foundation.lazy.layout/LazyLayoutScrollScope // androidx.compose.foundation.lazy.grid/LazyLayoutScrollScope|LazyLayoutScrollScope(androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.gestures.ScrollScope){}[0] -final fun androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.grid/LazyGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyVerticalGrid|LazyVerticalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.grid/LazyGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/LazyVerticalGrid|LazyVerticalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.grid.LazyGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.grid/rememberLazyGridState(kotlin/Int = ..., kotlin/Int = ...): androidx.compose.foundation.lazy.grid/LazyGridState // androidx.compose.foundation.lazy.grid/rememberLazyGridState|rememberLazyGridState(kotlin.Int;kotlin.Int){}[0] -final fun androidx.compose.foundation.lazy.layout/LazyLayout(kotlin/Function0<androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.layout/LazyLayoutPrefetchState? = ..., androidx.compose.foundation.lazy.layout/LazyLayoutMeasurePolicy) // androidx.compose.foundation.lazy.layout/LazyLayout|LazyLayout(kotlin.Function0<androidx.compose.foundation.lazy.layout.LazyLayoutItemProvider>;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.layout.LazyLayoutPrefetchState?;androidx.compose.foundation.lazy.layout.LazyLayoutMeasurePolicy){}[0] -final fun androidx.compose.foundation.lazy.layout/LazyLayoutPinnableItem(kotlin/Any?, kotlin/Int, androidx.compose.foundation.lazy.layout/LazyLayoutPinnedItemList, kotlin/Function0<kotlin/Unit>) // androidx.compose.foundation.lazy.layout/LazyLayoutPinnableItem|LazyLayoutPinnableItem(kotlin.Any?;kotlin.Int;androidx.compose.foundation.lazy.layout.LazyLayoutPinnedItemList;kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.grid/LazyGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.grid/LazyVerticalGrid|LazyVerticalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.grid.LazyGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.grid/LazyVerticalGrid(androidx.compose.foundation.lazy.grid/GridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.grid/LazyGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.grid/LazyGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.grid/LazyVerticalGrid|LazyVerticalGrid(androidx.compose.foundation.lazy.grid.GridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.grid.LazyGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.grid.LazyGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop_getter|androidx_compose_foundation_lazy_grid_GridCells_Adaptive$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop_getter|androidx_compose_foundation_lazy_grid_GridCells_Fixed$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop_getter|androidx_compose_foundation_lazy_grid_GridCells_FixedSize$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridBeyondBoundsState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridCacheWindowPrefetchStrategy$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridInterval$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridIntervalContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridItemScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridMeasureResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridMeasuredItem$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridMeasuredItemProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridMeasuredLine$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridMeasuredLineProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridPrefetchResultScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridScrollPosition$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridSlots$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridSpanLayoutProvider_LineConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.grid/androidx_compose_foundation_lazy_grid_LazyGridState$stableprop_getter|androidx_compose_foundation_lazy_grid_LazyGridState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.grid/rememberLazyGridState(kotlin/Int, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.lazy.grid/LazyGridState // androidx.compose.foundation.lazy.grid/rememberLazyGridState|rememberLazyGridState(kotlin.Int;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.layout/LazyLayout(kotlin/Function0<androidx.compose.foundation.lazy.layout/LazyLayoutItemProvider>, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.layout/LazyLayoutPrefetchState?, androidx.compose.foundation.lazy.layout/LazyLayoutMeasurePolicy, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.layout/LazyLayout|LazyLayout(kotlin.Function0<androidx.compose.foundation.lazy.layout.LazyLayoutItemProvider>;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.layout.LazyLayoutPrefetchState?;androidx.compose.foundation.lazy.layout.LazyLayoutMeasurePolicy;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.layout/LazyLayoutPinnableItem(kotlin/Any?, kotlin/Int, androidx.compose.foundation.lazy.layout/LazyLayoutPinnedItemList, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.lazy.layout/LazyLayoutPinnableItem|LazyLayoutPinnableItem(kotlin.Any?;kotlin.Int;androidx.compose.foundation.lazy.layout.LazyLayoutPinnedItemList;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_Averages$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_Averages$stableprop_getter|androidx_compose_foundation_lazy_layout_Averages$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop_getter|androidx_compose_foundation_lazy_layout_AwaitFirstLayoutModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop_getter|androidx_compose_foundation_lazy_layout_CacheWindowLogic$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop_getter|androidx_compose_foundation_lazy_layout_IntervalList_Interval$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutAnimateItemElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutAnimationSpecsNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsInfo_Interval$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutBeyondBoundsModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutIntervalContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimation$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutItemAnimator$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutItemContentFactory$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutMeasureScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutMeasuredItemProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutNearestRangeState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutPinnedItemList$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutPrefetchState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop_getter|androidx_compose_foundation_lazy_layout_LazyLayoutScrollDeltaBetweenPasses$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop_getter|androidx_compose_foundation_lazy_layout_MutableIntervalList$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop_getter|androidx_compose_foundation_lazy_layout_NearestRangeKeyIndexMap$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop_getter|androidx_compose_foundation_lazy_layout_PrefetchHandleProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.layout/androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop_getter|androidx_compose_foundation_lazy_layout_PrefetchMetrics$stableprop_getter(){}[0] final fun androidx.compose.foundation.lazy.layout/getDefaultLazyLayoutKey(kotlin/Int): kotlin/Any // androidx.compose.foundation.lazy.layout/getDefaultLazyLayoutKey|getDefaultLazyLayoutKey(kotlin.Int){}[0] -final fun androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid|LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid|LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid|LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.staggeredgrid/LazyHorizontalStaggeredGrid|LazyHorizontalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.lazy.staggeredgrid/LazyLayoutScrollScope(androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState, androidx.compose.foundation.gestures/ScrollScope): androidx.compose.foundation.lazy.layout/LazyLayoutScrollScope // androidx.compose.foundation.lazy.staggeredgrid/LazyLayoutScrollScope|LazyLayoutScrollScope(androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState;androidx.compose.foundation.gestures.ScrollScope){}[0] -final fun androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid|LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid|LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy.staggeredgrid/rememberLazyStaggeredGridState(kotlin/Int = ..., kotlin/Int = ...): androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState // androidx.compose.foundation.lazy.staggeredgrid/rememberLazyStaggeredGridState|rememberLazyStaggeredGridState(kotlin.Int;kotlin.Int){}[0] -final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.ui.Alignment.Horizontal;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid|LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridCells, androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy.staggeredgrid/LazyVerticalStaggeredGrid|LazyVerticalStaggeredGrid(androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells;androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridBeyondBoundsState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridInterval$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridIntervalContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridItemScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridLaneInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureContext$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasureResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridMeasuredItem$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridScrollPosition$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSlots$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridSpanProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_LazyStaggeredGridState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Adaptive$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_Fixed$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridCells_FixedSize$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy.staggeredgrid/androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop_getter|androidx_compose_foundation_lazy_staggeredgrid_StaggeredGridItemSpan$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy.staggeredgrid/rememberLazyStaggeredGridState(kotlin/Int, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridState // androidx.compose.foundation.lazy.staggeredgrid/rememberLazyStaggeredGridState|rememberLazyStaggeredGridState(kotlin.Int;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/LazyColumn(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyColumn|LazyColumn(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.lazy/LazyLayoutScrollScope(androidx.compose.foundation.lazy/LazyListState, androidx.compose.foundation.gestures/ScrollScope): androidx.compose.foundation.lazy.layout/LazyLayoutScrollScope // androidx.compose.foundation.lazy/LazyLayoutScrollScope|LazyLayoutScrollScope(androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.gestures.ScrollScope){}[0] -final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui/Alignment.Vertical = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui/Alignment.Vertical = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier = ..., androidx.compose.foundation.lazy/LazyListState = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui/Alignment.Vertical = ..., androidx.compose.foundation.gestures/FlingBehavior = ..., kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier;androidx.compose.foundation.lazy.LazyListState;androidx.compose.foundation.layout.PaddingValues;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.Alignment.Vertical;androidx.compose.foundation.gestures.FlingBehavior;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.lazy/rememberLazyListState(kotlin/Int = ..., kotlin/Int = ...): androidx.compose.foundation.lazy/LazyListState // androidx.compose.foundation.lazy/rememberLazyListState|rememberLazyListState(kotlin.Int;kotlin.Int){}[0] -final fun androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.pager/PageSize = ..., kotlin/Int = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui/Alignment.Vertical = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., androidx.compose.ui.input.nestedscroll/NestedScrollConnection = ..., androidx.compose.foundation.gestures.snapping/SnapPosition = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.pager/HorizontalPager|HorizontalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.pager.PageSize;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Vertical;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection;androidx.compose.foundation.gestures.snapping.SnapPosition;androidx.compose.foundation.OverscrollEffect?;kotlin.Function2<androidx.compose.foundation.pager.PagerScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.pager/PageSize = ..., kotlin/Int = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui/Alignment.Vertical = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., androidx.compose.ui.input.nestedscroll/NestedScrollConnection = ..., androidx.compose.foundation.gestures.snapping/SnapPosition = ..., kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.pager/HorizontalPager|HorizontalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.pager.PageSize;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Vertical;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection;androidx.compose.foundation.gestures.snapping.SnapPosition;kotlin.Function2<androidx.compose.foundation.pager.PagerScope,kotlin.Int,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui/Alignment.Vertical?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, androidx.compose.foundation/OverscrollEffect?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.Alignment.Vertical?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;androidx.compose.foundation.OverscrollEffect?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui/Alignment.Vertical?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.Alignment.Vertical?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/LazyRow(androidx.compose.ui/Modifier?, androidx.compose.foundation.lazy/LazyListState?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Boolean, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui/Alignment.Vertical?, androidx.compose.foundation.gestures/FlingBehavior?, kotlin/Function1<androidx.compose.foundation.lazy/LazyListScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.lazy/LazyRow|LazyRow(androidx.compose.ui.Modifier?;androidx.compose.foundation.lazy.LazyListState?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Boolean;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.Alignment.Vertical?;androidx.compose.foundation.gestures.FlingBehavior?;kotlin.Function1<androidx.compose.foundation.lazy.LazyListScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_LazyItemScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop_getter|androidx_compose_foundation_lazy_LazyListBeyondBoundsState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop_getter|androidx_compose_foundation_lazy_LazyListCacheWindowScope$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop_getter|androidx_compose_foundation_lazy_LazyListCacheWindowStrategy$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListInterval$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListInterval$stableprop_getter|androidx_compose_foundation_lazy_LazyListInterval$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop_getter|androidx_compose_foundation_lazy_LazyListIntervalContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop_getter|androidx_compose_foundation_lazy_LazyListMeasureResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop_getter|androidx_compose_foundation_lazy_LazyListMeasuredItem$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop_getter|androidx_compose_foundation_lazy_LazyListMeasuredItemProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop_getter|androidx_compose_foundation_lazy_LazyListPrefetchResultScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop_getter|androidx_compose_foundation_lazy_LazyListScrollPosition$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.lazy/androidx_compose_foundation_lazy_LazyListState$stableprop_getter|androidx_compose_foundation_lazy_LazyListState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.lazy/rememberLazyListState(kotlin/Int, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.lazy/LazyListState // androidx.compose.foundation.lazy/rememberLazyListState|rememberLazyListState(kotlin.Int;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.pager/PageSize?, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Vertical?, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection?, androidx.compose.foundation.gestures.snapping/SnapPosition?, androidx.compose.foundation/OverscrollEffect?, kotlin/Function4<androidx.compose.foundation.pager/PagerScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.pager/HorizontalPager|HorizontalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.pager.PageSize?;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Vertical?;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection?;androidx.compose.foundation.gestures.snapping.SnapPosition?;androidx.compose.foundation.OverscrollEffect?;kotlin.Function4<androidx.compose.foundation.pager.PagerScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.pager/HorizontalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.pager/PageSize?, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Vertical?, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection?, androidx.compose.foundation.gestures.snapping/SnapPosition?, kotlin/Function4<androidx.compose.foundation.pager/PagerScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.pager/HorizontalPager|HorizontalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.pager.PageSize?;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Vertical?;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection?;androidx.compose.foundation.gestures.snapping.SnapPosition?;kotlin.Function4<androidx.compose.foundation.pager.PagerScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.pager/LazyLayoutScrollScope(androidx.compose.foundation.pager/PagerState, androidx.compose.foundation.gestures/ScrollScope): androidx.compose.foundation.lazy.layout/LazyLayoutScrollScope // androidx.compose.foundation.pager/LazyLayoutScrollScope|LazyLayoutScrollScope(androidx.compose.foundation.pager.PagerState;androidx.compose.foundation.gestures.ScrollScope){}[0] final fun androidx.compose.foundation.pager/PagerState(kotlin/Int = ..., kotlin/Float = ..., kotlin/Function0<kotlin/Int>): androidx.compose.foundation.pager/PagerState // androidx.compose.foundation.pager/PagerState|PagerState(kotlin.Int;kotlin.Float;kotlin.Function0<kotlin.Int>){}[0] -final fun androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.pager/PageSize = ..., kotlin/Int = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., androidx.compose.ui.input.nestedscroll/NestedScrollConnection = ..., androidx.compose.foundation.gestures.snapping/SnapPosition = ..., androidx.compose.foundation/OverscrollEffect? = ..., kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.pager/VerticalPager|VerticalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.pager.PageSize;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Horizontal;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection;androidx.compose.foundation.gestures.snapping.SnapPosition;androidx.compose.foundation.OverscrollEffect?;kotlin.Function2<androidx.compose.foundation.pager.PagerScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.pager/PageSize = ..., kotlin/Int = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function1<kotlin/Int, kotlin/Any>? = ..., androidx.compose.ui.input.nestedscroll/NestedScrollConnection = ..., androidx.compose.foundation.gestures.snapping/SnapPosition = ..., kotlin/Function2<androidx.compose.foundation.pager/PagerScope, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.pager/VerticalPager|VerticalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.pager.PageSize;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Horizontal;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection;androidx.compose.foundation.gestures.snapping.SnapPosition;kotlin.Function2<androidx.compose.foundation.pager.PagerScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.pager/rememberPagerState(kotlin/Int = ..., kotlin/Float = ..., kotlin/Function0<kotlin/Int>): androidx.compose.foundation.pager/PagerState // androidx.compose.foundation.pager/rememberPagerState|rememberPagerState(kotlin.Int;kotlin.Float;kotlin.Function0<kotlin.Int>){}[0] +final fun androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.pager/PageSize?, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection?, androidx.compose.foundation.gestures.snapping/SnapPosition?, androidx.compose.foundation/OverscrollEffect?, kotlin/Function4<androidx.compose.foundation.pager/PagerScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.pager/VerticalPager|VerticalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.pager.PageSize?;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection?;androidx.compose.foundation.gestures.snapping.SnapPosition?;androidx.compose.foundation.OverscrollEffect?;kotlin.Function4<androidx.compose.foundation.pager.PagerScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.pager/VerticalPager(androidx.compose.foundation.pager/PagerState, androidx.compose.ui/Modifier?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.pager/PageSize?, kotlin/Int, androidx.compose.ui.unit/Dp, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, kotlin/Boolean, kotlin/Function1<kotlin/Int, kotlin/Any>?, androidx.compose.ui.input.nestedscroll/NestedScrollConnection?, androidx.compose.foundation.gestures.snapping/SnapPosition?, kotlin/Function4<androidx.compose.foundation.pager/PagerScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.pager/VerticalPager|VerticalPager(androidx.compose.foundation.pager.PagerState;androidx.compose.ui.Modifier?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.pager.PageSize?;kotlin.Int;androidx.compose.ui.unit.Dp;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<kotlin.Int,kotlin.Any>?;androidx.compose.ui.input.nestedscroll.NestedScrollConnection?;androidx.compose.foundation.gestures.snapping.SnapPosition?;kotlin.Function4<androidx.compose.foundation.pager.PagerScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_MeasuredPage$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_MeasuredPage$stableprop_getter|androidx_compose_foundation_pager_MeasuredPage$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fill$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fill$stableprop_getter|androidx_compose_foundation_pager_PageSize_Fill$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fixed$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PageSize_Fixed$stableprop_getter|androidx_compose_foundation_pager_PageSize_Fixed$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop_getter|androidx_compose_foundation_pager_PagerBeyondBoundsState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDebugConfig$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDebugConfig$stableprop_getter|androidx_compose_foundation_pager_PagerDebugConfig$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerDefaults$stableprop_getter|androidx_compose_foundation_pager_PagerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerIntervalContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerIntervalContent$stableprop_getter|androidx_compose_foundation_pager_PagerIntervalContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop_getter|androidx_compose_foundation_pager_PagerLazyLayoutItemProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerMeasureResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerMeasureResult$stableprop_getter|androidx_compose_foundation_pager_PagerMeasureResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScopeImpl$stableprop_getter|androidx_compose_foundation_pager_PagerScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScrollPosition$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerScrollPosition$stableprop_getter|androidx_compose_foundation_pager_PagerScrollPosition$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop_getter|androidx_compose_foundation_pager_PagerSnapDistanceMaxPages$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.pager/androidx_compose_foundation_pager_PagerState$stableprop_getter|androidx_compose_foundation_pager_PagerState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.pager/rememberPagerState(kotlin/Int, kotlin/Float, kotlin/Function0<kotlin/Int>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.pager/PagerState // androidx.compose.foundation.pager/rememberPagerState|rememberPagerState(kotlin.Int;kotlin.Float;kotlin.Function0<kotlin.Int>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.platform/androidx_compose_foundation_platform_SynchronizedObject$stableprop_getter(): kotlin/Int // androidx.compose.foundation.platform/androidx_compose_foundation_platform_SynchronizedObject$stableprop_getter|androidx_compose_foundation_platform_SynchronizedObject$stableprop_getter(){}[0] final fun androidx.compose.foundation.relocation/BringIntoViewRequester(): androidx.compose.foundation.relocation/BringIntoViewRequester // androidx.compose.foundation.relocation/BringIntoViewRequester|BringIntoViewRequester(){}[0] +final fun androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop_getter|androidx_compose_foundation_relocation_BringIntoViewRequesterNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.relocation/androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop_getter|androidx_compose_foundation_relocation_BringIntoViewResponderNode$stableprop_getter(){}[0] final fun androidx.compose.foundation.shape/AbsoluteCutCornerShape(androidx.compose.foundation.shape/CornerSize): androidx.compose.foundation.shape/AbsoluteCutCornerShape // androidx.compose.foundation.shape/AbsoluteCutCornerShape|AbsoluteCutCornerShape(androidx.compose.foundation.shape.CornerSize){}[0] final fun androidx.compose.foundation.shape/AbsoluteCutCornerShape(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.shape/AbsoluteCutCornerShape // androidx.compose.foundation.shape/AbsoluteCutCornerShape|AbsoluteCutCornerShape(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.foundation.shape/AbsoluteCutCornerShape(androidx.compose.ui.unit/Dp): androidx.compose.foundation.shape/AbsoluteCutCornerShape // androidx.compose.foundation.shape/AbsoluteCutCornerShape|AbsoluteCutCornerShape(androidx.compose.ui.unit.Dp){}[0] @@ -1617,56 +2039,178 @@ final fun androidx.compose.foundation.shape/RoundedCornerShape(kotlin/Float): androidx.compose.foundation.shape/RoundedCornerShape // androidx.compose.foundation.shape/RoundedCornerShape|RoundedCornerShape(kotlin.Float){}[0] final fun androidx.compose.foundation.shape/RoundedCornerShape(kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ...): androidx.compose.foundation.shape/RoundedCornerShape // androidx.compose.foundation.shape/RoundedCornerShape|RoundedCornerShape(kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.shape/RoundedCornerShape(kotlin/Int): androidx.compose.foundation.shape/RoundedCornerShape // androidx.compose.foundation.shape/RoundedCornerShape|RoundedCornerShape(kotlin.Int){}[0] -final fun androidx.compose.foundation.text.input/rememberTextFieldState(kotlin/String = ..., androidx.compose.ui.text/TextRange = ...): androidx.compose.foundation.text.input/TextFieldState // androidx.compose.foundation.text.input/rememberTextFieldState|rememberTextFieldState(kotlin.String;androidx.compose.ui.text.TextRange){}[0] -final fun androidx.compose.foundation.text.selection/DisableSelection(kotlin/Function0<kotlin/Unit>) // androidx.compose.foundation.text.selection/DisableSelection|DisableSelection(kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text.selection/SelectionContainer(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.foundation.text.selection/SelectionContainer|SelectionContainer(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., androidx.compose.foundation.text.input/TextFieldDecorator? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ...) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char){}[0] -final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., androidx.compose.foundation.text.input/TextFieldDecorator? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ...) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char){}[0] -final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., androidx.compose.foundation.text.input/TextFieldDecorator? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ..., androidx.compose.foundation/ScrollState = ...) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.ScrollState){}[0] -final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ...) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>){}[0] -final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ...) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>){}[0] -final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., androidx.compose.ui.graphics/ColorProducer? = ...) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;androidx.compose.ui.graphics.ColorProducer?){}[0] -final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., androidx.compose.ui.graphics/ColorProducer? = ..., androidx.compose.foundation.text/TextAutoSize? = ...) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.foundation.text.TextAutoSize?){}[0] -final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ...) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int){}[0] -final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ...) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int){}[0] -final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.ui.graphics/ColorProducer? = ...) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.graphics.ColorProducer?){}[0] -final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.ui.graphics/ColorProducer? = ..., androidx.compose.foundation.text/TextAutoSize? = ...) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.foundation.text.TextAutoSize?){}[0] -final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.foundation.text.input/TextFieldLineLimits = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation.text.input/TextFieldDecorator? = ..., androidx.compose.foundation/ScrollState = ...) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.ScrollState){}[0] -final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.ui.text.input/VisualTransformation = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Brush = ..., kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit> = ...) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Brush;kotlin.Function1<kotlin.Function0<kotlin.Unit>,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.ui.text.input/VisualTransformation = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit> = ...) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;kotlin.Function1<kotlin.Function0<kotlin.Unit>,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.ui.text.input/VisualTransformation = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Brush = ..., kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit> = ...) // androidx.compose.foundation.text/BasicTextField|BasicTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Brush;kotlin.Function1<kotlin.Function0<kotlin.Unit>,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.ui.text.input/VisualTransformation = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Brush = ..., kotlin/Function1<kotlin/Function0<kotlin/Unit>, kotlin/Unit> = ...) // androidx.compose.foundation.text/BasicTextField|BasicTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush;kotlin.Function1<kotlin.Function0<kotlin.Unit>,kotlin.Unit>){}[0] -final fun androidx.compose.foundation.text/ClickableText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Boolean = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., kotlin/Function1<kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.text/ClickableText|ClickableText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.text.TextStyle;kotlin.Boolean;androidx.compose.ui.text.style.TextOverflow;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;kotlin.Function1<kotlin.Int,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop_getter|androidx_compose_foundation_shape_AbsoluteCutCornerShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop_getter|androidx_compose_foundation_shape_AbsoluteRoundedCornerShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_CornerBasedShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_CornerBasedShape$stableprop_getter|androidx_compose_foundation_shape_CornerBasedShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_CutCornerShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_CutCornerShape$stableprop_getter|androidx_compose_foundation_shape_CutCornerShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_GenericShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_GenericShape$stableprop_getter|androidx_compose_foundation_shape_GenericShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.shape/androidx_compose_foundation_shape_RoundedCornerShape$stableprop_getter(): kotlin/Int // androidx.compose.foundation.shape/androidx_compose_foundation_shape_RoundedCornerShape$stableprop_getter|androidx_compose_foundation_shape_RoundedCornerShape$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.builder/androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.builder/androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop_getter|androidx_compose_foundation_text_contextmenu_builder_TextContextMenuBuilderScope$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop_getter|androidx_compose_foundation_text_contextmenu_data_TextContextMenuComponent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop_getter|androidx_compose_foundation_text_contextmenu_data_TextContextMenuData$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop_getter|androidx_compose_foundation_text_contextmenu_data_TextContextMenuKeys$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.data/androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop_getter|androidx_compose_foundation_text_contextmenu_data_TextContextMenuSeparator$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop_getter|androidx_compose_foundation_text_contextmenu_modifier_AddTextContextMenuDataComponentsNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop_getter|androidx_compose_foundation_text_contextmenu_modifier_TextContextMenuToolbarHandlerNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop_getter|androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequester$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.modifier/androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop_getter|androidx_compose_foundation_text_contextmenu_modifier_ToolbarRequesterImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.contextmenu.provider/androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.contextmenu.provider/androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop_getter|androidx_compose_foundation_text_contextmenu_provider_BasicTextContextMenuProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.handwriting/androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.handwriting/androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop_getter|androidx_compose_foundation_text_handwriting_StylusHandwritingNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop_getter|androidx_compose_foundation_text_input_internal_selection_TextFieldHandleState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_selection_TextFieldMagnifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop_getter|androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop_getter|androidx_compose_foundation_text_input_internal_selection_TextFieldPreparedSelectionState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.selection/androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop_getter|androidx_compose_foundation_text_input_internal_selection_TextFieldSelectionState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop_getter|androidx_compose_foundation_text_input_internal_undo_TextUndoOperation$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal.undo/androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop_getter|androidx_compose_foundation_text_input_internal_undo_UndoManager$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop_getter|androidx_compose_foundation_text_input_internal_ChangeTracker$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop_getter|androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_CoreTextFieldSemanticsModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop_getter|androidx_compose_foundation_text_input_internal_CursorAnimationState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_LegacyAdaptingPlatformTextInputModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop_getter|androidx_compose_foundation_text_input_internal_LegacyPlatformTextInputServiceAdapter$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop_getter|androidx_compose_foundation_text_input_internal_OffsetMappingCalculator$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop_getter|androidx_compose_foundation_text_input_internal_PartialGapBuffer$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop_getter|androidx_compose_foundation_text_input_internal_SelectionWedgeAffinity$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop_getter|androidx_compose_foundation_text_input_internal_SingleLineCodepointTransformation$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldCoreModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldCoreModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldDecoratorModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldKeyEventHandler$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldLayoutStateCache$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop_getter|androidx_compose_foundation_text_input_internal_TextFieldTextLayoutModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop_getter|androidx_compose_foundation_text_input_internal_TextLayoutState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input.internal/androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop_getter|androidx_compose_foundation_text_input_internal_TransformedTextFieldState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldBuffer$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldBuffer$stableprop_getter|androidx_compose_foundation_text_input_TextFieldBuffer$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop_getter|androidx_compose_foundation_text_input_TextFieldCharSequence$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop_getter|androidx_compose_foundation_text_input_TextFieldLineLimits_MultiLine$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop_getter|androidx_compose_foundation_text_input_TextFieldLineLimits_SingleLine$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState$stableprop_getter|androidx_compose_foundation_text_input_TextFieldState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop_getter|androidx_compose_foundation_text_input_TextFieldState_Saver$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager$stableprop_getter|androidx_compose_foundation_text_input_TextUndoManager$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop_getter|androidx_compose_foundation_text_input_TextUndoManager_Companion_Saver$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_UndoState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.input/androidx_compose_foundation_text_input_UndoState$stableprop_getter|androidx_compose_foundation_text_input_UndoState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.input/rememberTextFieldState(kotlin/String?, androidx.compose.ui.text/TextRange, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.text.input/TextFieldState // androidx.compose.foundation.text.input/rememberTextFieldState|rememberTextFieldState(kotlin.String?;androidx.compose.ui.text.TextRange;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop_getter|androidx_compose_foundation_text_modifiers_MinLinesConstrainer$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop_getter|androidx_compose_foundation_text_modifiers_MultiParagraphLayoutCache$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop_getter|androidx_compose_foundation_text_modifiers_ParagraphLayoutCache$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop_getter|androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop_getter|androidx_compose_foundation_text_modifiers_SelectableTextAnnotatedStringNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectionController$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SelectionController$stableprop_getter|androidx_compose_foundation_text_modifiers_SelectionController$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop_getter|androidx_compose_foundation_text_modifiers_SimpleTextAutoSizeLayoutScope$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop_getter|androidx_compose_foundation_text_modifiers_StaticTextSelectionParams$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop_getter|androidx_compose_foundation_text_modifiers_TextAnnotatedStringElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop_getter|androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop_getter|androidx_compose_foundation_text_modifiers_TextAnnotatedStringNode_TextSubstitutionValue$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop_getter|androidx_compose_foundation_text_modifiers_TextStringSimpleElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop_getter|androidx_compose_foundation_text_modifiers_TextStringSimpleNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.modifiers/androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop_getter|androidx_compose_foundation_text_modifiers_TextStringSimpleNode_TextSubstitutionValue$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/DisableSelection(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation.text.selection/DisableSelection|DisableSelection(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation.text.selection/SelectionContainer(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text.selection/SelectionContainer|SelectionContainer(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop_getter|androidx_compose_foundation_text_selection_BaseTextPreparedSelection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop_getter|androidx_compose_foundation_text_selection_HandlePositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop_getter|androidx_compose_foundation_text_selection_MultiWidgetSelectionDelegate$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectableInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectableInfo$stableprop_getter|androidx_compose_foundation_text_selection_SelectableInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection$stableprop_getter|androidx_compose_foundation_text_selection_Selection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop_getter|androidx_compose_foundation_text_selection_SelectionHandleInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop_getter|androidx_compose_foundation_text_selection_SelectionLayoutBuilder$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionManager$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionManager$stableprop_getter|androidx_compose_foundation_text_selection_SelectionManager$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop_getter|androidx_compose_foundation_text_selection_SelectionRegistrarImpl$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop_getter|androidx_compose_foundation_text_selection_Selection_AnchorInfo$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop_getter|androidx_compose_foundation_text_selection_TextFieldPreparedSelection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop_getter|androidx_compose_foundation_text_selection_TextFieldSelectionManager$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop_getter|androidx_compose_foundation_text_selection_TextPreparedSelection$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop_getter|androidx_compose_foundation_text_selection_TextPreparedSelectionState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextSelectionColors$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text.selection/androidx_compose_foundation_text_selection_TextSelectionColors$stableprop_getter|androidx_compose_foundation_text_selection_TextSelectionColors$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation/ScrollState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.ScrollState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicSecureTextField|BasicSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.foundation.text/TextAutoSize?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.foundation.text/TextAutoSize?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicText(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.graphics/ColorProducer?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicText|BasicText(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.graphics.ColorProducer?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text.input/TextFieldDecorator?, androidx.compose.foundation/ScrollState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.input.TextFieldDecorator?;androidx.compose.foundation.ScrollState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, kotlin/Function3<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;kotlin.Function3<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, kotlin/Function3<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicTextField|BasicTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;kotlin.Function3<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, kotlin/Function3<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicTextField|BasicTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;kotlin.Function3<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/BasicTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.ui.text.input/VisualTransformation?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Brush?, kotlin/Function3<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/BasicTextField|BasicTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.ui.text.input.VisualTransformation?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Brush?;kotlin.Function3<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation.text/ClickableText(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.text/TextStyle?, kotlin/Boolean, androidx.compose.ui.text.style/TextOverflow, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, kotlin/Function1<kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation.text/ClickableText|ClickableText(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.text.TextStyle?;kotlin.Boolean;androidx.compose.ui.text.style.TextOverflow;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;kotlin.Function1<kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation.text/KeyboardActions(kotlin/Function1<androidx.compose.foundation.text/KeyboardActionScope, kotlin/Unit>): androidx.compose.foundation.text/KeyboardActions // androidx.compose.foundation.text/KeyboardActions|KeyboardActions(kotlin.Function1<androidx.compose.foundation.text.KeyboardActionScope,kotlin.Unit>){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_DeadKeyCombiner$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_DeadKeyCombiner$stableprop_getter|androidx_compose_foundation_text_DeadKeyCombiner$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_InlineTextContent$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_InlineTextContent$stableprop_getter|androidx_compose_foundation_text_InlineTextContent$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActionRunner$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActionRunner$stableprop_getter|androidx_compose_foundation_text_KeyboardActionRunner$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActions$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardActions$stableprop_getter|androidx_compose_foundation_text_KeyboardActions$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardOptions$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_KeyboardOptions$stableprop_getter|androidx_compose_foundation_text_KeyboardOptions$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_LegacyTextFieldState$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_LegacyTextFieldState$stableprop_getter|androidx_compose_foundation_text_LegacyTextFieldState$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop_getter|androidx_compose_foundation_text_LinkStateInteractionSourceObserver$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_MappedKeys$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_MappedKeys$stableprop_getter|androidx_compose_foundation_text_MappedKeys$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_PasswordInputTransformation$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_PasswordInputTransformation$stableprop_getter|androidx_compose_foundation_text_PasswordInputTransformation$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_SecureTextFieldController$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_SecureTextFieldController$stableprop_getter|androidx_compose_foundation_text_SecureTextFieldController$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop_getter|androidx_compose_foundation_text_TextAutoSizeDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextDelegate$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextDelegate$stableprop_getter|androidx_compose_foundation_text_TextDelegate$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldDelegate$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldDelegate$stableprop_getter|androidx_compose_foundation_text_TextFieldDelegate$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldKeyInput$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldKeyInput$stableprop_getter|androidx_compose_foundation_text_TextFieldKeyInput$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop_getter|androidx_compose_foundation_text_TextFieldScrollerPosition$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextLayoutResultProxy$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextLayoutResultProxy$stableprop_getter|androidx_compose_foundation_text_TextLayoutResultProxy$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextLinkScope$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextLinkScope$stableprop_getter|androidx_compose_foundation_text_TextLinkScope$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop_getter|androidx_compose_foundation_text_TextRangeLayoutMeasureResult$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop_getter|androidx_compose_foundation_text_TextRangeLayoutMeasureScope$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop_getter|androidx_compose_foundation_text_TextRangeLayoutModifier$stableprop_getter(){}[0] +final fun androidx.compose.foundation.text/androidx_compose_foundation_text_UndoManager$stableprop_getter(): kotlin/Int // androidx.compose.foundation.text/androidx_compose_foundation_text_UndoManager$stableprop_getter|androidx_compose_foundation_text_UndoManager$stableprop_getter(){}[0] final fun androidx.compose.foundation/BorderStroke(androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color): androidx.compose.foundation/BorderStroke // androidx.compose.foundation/BorderStroke|BorderStroke(androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>) // androidx.compose.foundation/Canvas|Canvas(androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/String, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>) // androidx.compose.foundation/Canvas|Canvas(androidx.compose.ui.Modifier;kotlin.String;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>){}[0] -final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., androidx.compose.ui.layout/ContentScale = ..., kotlin/Float = ..., androidx.compose.ui.graphics/ColorFilter? = ...) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;androidx.compose.ui.layout.ContentScale;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?){}[0] -final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., androidx.compose.ui.layout/ContentScale = ..., kotlin/Float = ..., androidx.compose.ui.graphics/ColorFilter? = ...) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;androidx.compose.ui.layout.ContentScale;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?){}[0] -final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., androidx.compose.ui.layout/ContentScale = ..., kotlin/Float = ..., androidx.compose.ui.graphics/ColorFilter? = ...) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;androidx.compose.ui.layout.ContentScale;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?){}[0] -final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., androidx.compose.ui.layout/ContentScale = ..., kotlin/Float = ..., androidx.compose.ui.graphics/ColorFilter? = ..., androidx.compose.ui.graphics/FilterQuality = ...) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;androidx.compose.ui.layout.ContentScale;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?;androidx.compose.ui.graphics.FilterQuality){}[0] +final fun androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation/Canvas|Canvas(androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation/Canvas(androidx.compose.ui/Modifier, kotlin/String, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.foundation/Canvas|Canvas(androidx.compose.ui.Modifier;kotlin.String;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, androidx.compose.ui.layout/ContentScale?, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;androidx.compose.ui.layout.ContentScale?;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, androidx.compose.ui.layout/ContentScale?, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;androidx.compose.ui.layout.ContentScale?;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, androidx.compose.ui.layout/ContentScale?, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;androidx.compose.ui.layout.ContentScale?;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.foundation/Image(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, androidx.compose.ui.layout/ContentScale?, kotlin/Float, androidx.compose.ui.graphics/ColorFilter?, androidx.compose.ui.graphics/FilterQuality, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.foundation/Image|Image(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;androidx.compose.ui.layout.ContentScale?;kotlin.Float;androidx.compose.ui.graphics.ColorFilter?;androidx.compose.ui.graphics.FilterQuality;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.foundation/MarqueeSpacing(androidx.compose.ui.unit/Dp): androidx.compose.foundation/MarqueeSpacing // androidx.compose.foundation/MarqueeSpacing|MarqueeSpacing(androidx.compose.ui.unit.Dp){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_AbstractClickableNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_AbstractClickableNode$stableprop_getter|androidx_compose_foundation_AbstractClickableNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_AtomicLong$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_AtomicLong$stableprop_getter|androidx_compose_foundation_AtomicLong$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_AtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_AtomicReference$stableprop_getter|androidx_compose_foundation_AtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_BasicTooltipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_BasicTooltipDefaults$stableprop_getter|androidx_compose_foundation_BasicTooltipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_BasicTooltipStrings$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_BasicTooltipStrings$stableprop_getter|androidx_compose_foundation_BasicTooltipStrings$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_BorderModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_BorderModifierNode$stableprop_getter|androidx_compose_foundation_BorderModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_BorderModifierNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_BorderModifierNodeElement$stableprop_getter|androidx_compose_foundation_BorderModifierNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_BorderStroke$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_BorderStroke$stableprop_getter|androidx_compose_foundation_BorderStroke$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_ClickableNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_ClickableNode$stableprop_getter|androidx_compose_foundation_ClickableNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop_getter|androidx_compose_foundation_CombinedClickableNode_DoubleKeyClickState$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_ComposeFoundationFlags$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_ComposeFoundationFlags$stableprop_getter|androidx_compose_foundation_ComposeFoundationFlags$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_FocusableNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_FocusableNode$stableprop_getter|androidx_compose_foundation_FocusableNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_FocusedBoundsObserverNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_FocusedBoundsObserverNode$stableprop_getter|androidx_compose_foundation_FocusedBoundsObserverNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_MarqueeDefaults$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_MarqueeDefaults$stableprop_getter|androidx_compose_foundation_MarqueeDefaults$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_MutationInterruptedException$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_MutationInterruptedException$stableprop_getter|androidx_compose_foundation_MutationInterruptedException$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_MutatorMutex$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_MutatorMutex$stableprop_getter|androidx_compose_foundation_MutatorMutex$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_ScrollNode$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_ScrollNode$stableprop_getter|androidx_compose_foundation_ScrollNode$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_ScrollState$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_ScrollState$stableprop_getter|androidx_compose_foundation_ScrollState$stableprop_getter(){}[0] +final fun androidx.compose.foundation/androidx_compose_foundation_ScrollingLayoutElement$stableprop_getter(): kotlin/Int // androidx.compose.foundation/androidx_compose_foundation_ScrollingLayoutElement$stableprop_getter|androidx_compose_foundation_ScrollingLayoutElement$stableprop_getter(){}[0] final fun androidx.compose.foundation/checkScrollableContainerConstraints(androidx.compose.ui.unit/Constraints, androidx.compose.foundation.gestures/Orientation) // androidx.compose.foundation/checkScrollableContainerConstraints|checkScrollableContainerConstraints(androidx.compose.ui.unit.Constraints;androidx.compose.foundation.gestures.Orientation){}[0] -final fun androidx.compose.foundation/isSystemInDarkTheme(): kotlin/Boolean // androidx.compose.foundation/isSystemInDarkTheme|isSystemInDarkTheme(){}[0] -final fun androidx.compose.foundation/rememberOverscrollEffect(): androidx.compose.foundation/OverscrollEffect? // androidx.compose.foundation/rememberOverscrollEffect|rememberOverscrollEffect(){}[0] -final fun androidx.compose.foundation/rememberScrollState(kotlin/Int = ...): androidx.compose.foundation/ScrollState // androidx.compose.foundation/rememberScrollState|rememberScrollState(kotlin.Int){}[0] +final fun androidx.compose.foundation/isSystemInDarkTheme(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Boolean // androidx.compose.foundation/isSystemInDarkTheme|isSystemInDarkTheme(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation/rememberOverscrollEffect(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/OverscrollEffect? // androidx.compose.foundation/rememberOverscrollEffect|rememberOverscrollEffect(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.foundation/rememberScrollState(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/ScrollState // androidx.compose.foundation/rememberScrollState|rememberScrollState(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.gestures/DraggableAnchors<#A>).androidx.compose.foundation.gestures/forEach(kotlin/Function2<#A, kotlin/Float, kotlin/Unit>) // androidx.compose.foundation.gestures/forEach|forEach@androidx.compose.foundation.gestures.DraggableAnchors<0:0>(kotlin.Function2<0:0,kotlin.Float,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/items|items@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/items|items@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., noinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., noinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function1<#A, kotlin/Any?> = ..., noinline kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/items|items@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function1<0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function2<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function1<#A, kotlin/Any?> = ..., noinline kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/items|items@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function1<0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function2<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., noinline kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function2<kotlin.Int,0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function3<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., noinline kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function2<kotlin.Int,0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function3<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function2<androidx.compose.foundation.lazy/LazyItemScope, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function2<androidx.compose.foundation.lazy.LazyItemScope,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function3<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/items|items@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.grid.LazyGridItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function2<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy.grid/LazyGridItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/items|items@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function2<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.grid.LazyGridItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., noinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function5<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.grid/LazyGridScope).androidx.compose.foundation.lazy.grid/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., noinline kotlin/Function3<androidx.compose.foundation.lazy.grid/LazyGridItemSpanScope, kotlin/Int, #A, androidx.compose.foundation.lazy.grid/GridItemSpan>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy.grid/LazyGridItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.grid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.grid.LazyGridScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function3<androidx.compose.foundation.lazy.grid.LazyGridItemSpanScope,kotlin.Int,0:0,androidx.compose.foundation.lazy.grid.GridItemSpan>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function5<androidx.compose.foundation.lazy.grid.LazyGridItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function1<#A, kotlin/Any?> = ..., noinline kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/items|items@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function1<0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function4<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function1<#A, kotlin/Any?> = ..., noinline kotlin/Function1<#A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/items|items@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function1<0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function4<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., noinline kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function2<kotlin.Int,0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function5<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridScope).androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., noinline kotlin/Function2<kotlin/Int, #A, androidx.compose.foundation.lazy.staggeredgrid/StaggeredGridItemSpan>? = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy.staggeredgrid/LazyStaggeredGridItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy.staggeredgrid/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function2<kotlin.Int,0:0,androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridItemSpan>?;kotlin.Function5<androidx.compose.foundation.lazy.staggeredgrid.LazyStaggeredGridItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin.collections/List<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/items(kotlin/Array<#A>, noinline kotlin/Function1<#A, kotlin/Any>? = ..., noinline kotlin/Function1<#A, kotlin/Any?> = ..., crossinline kotlin/Function4<androidx.compose.foundation.lazy/LazyItemScope, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/items|items@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function1<0:0,kotlin.Any>?;kotlin.Function1<0:0,kotlin.Any?>;kotlin.Function4<androidx.compose.foundation.lazy.LazyItemScope,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function5<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin.collections/List<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.collections.List<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function5<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function2<kotlin/Int, #A, kotlin/Any?> = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function2<kotlin.Int,0:0,kotlin.Any?>;kotlin.Function5<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> (androidx.compose.foundation.lazy/LazyListScope).androidx.compose.foundation.lazy/itemsIndexed(kotlin/Array<#A>, noinline kotlin/Function2<kotlin/Int, #A, kotlin/Any>? = ..., crossinline kotlin/Function5<androidx.compose.foundation.lazy/LazyItemScope, kotlin/Int, #A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.foundation.lazy/itemsIndexed|itemsIndexed@androidx.compose.foundation.lazy.LazyListScope(kotlin.Array<0:0>;kotlin.Function2<kotlin.Int,0:0,kotlin.Any>?;kotlin.Function5<androidx.compose.foundation.lazy.LazyItemScope,kotlin.Int,0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] final suspend fun (androidx.compose.foundation.gestures/Scrollable2DState).androidx.compose.foundation.gestures/animateScrollBy(androidx.compose.ui.geometry/Offset, androidx.compose.animation.core/AnimationSpec<androidx.compose.ui.geometry/Offset> = ...): androidx.compose.ui.geometry/Offset // androidx.compose.foundation.gestures/animateScrollBy|animateScrollBy@androidx.compose.foundation.gestures.Scrollable2DState(androidx.compose.ui.geometry.Offset;androidx.compose.animation.core.AnimationSpec<androidx.compose.ui.geometry.Offset>){}[0] final suspend fun (androidx.compose.foundation.gestures/Scrollable2DState).androidx.compose.foundation.gestures/scrollBy(androidx.compose.ui.geometry/Offset): androidx.compose.ui.geometry/Offset // androidx.compose.foundation.gestures/scrollBy|scrollBy@androidx.compose.foundation.gestures.Scrollable2DState(androidx.compose.ui.geometry.Offset){}[0] final suspend fun (androidx.compose.foundation.gestures/Scrollable2DState).androidx.compose.foundation.gestures/stopScroll(androidx.compose.foundation/MutatePriority = ...) // androidx.compose.foundation.gestures/stopScroll|stopScroll@androidx.compose.foundation.gestures.Scrollable2DState(androidx.compose.foundation.MutatePriority){}[0]
diff --git a/compose/material/material-ripple/bcv/native/current.ignore b/compose/material/material-ripple/bcv/native/current.ignore new file mode 100644 index 0000000..664ad4a4 --- /dev/null +++ b/compose/material/material-ripple/bcv/native/current.ignore
@@ -0,0 +1,6 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration androidx.compose.material.ripple/rememberRipple(kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color) from androidx.compose.material:material-ripple +[linuxX64]: Removed declaration defaultColor() from androidx.compose.material.ripple/RippleTheme +[linuxX64]: Removed declaration rippleAlpha() from androidx.compose.material.ripple/RippleTheme +[linuxX64]: Added declaration defaultColor(androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material.ripple/RippleTheme +[linuxX64]: Added declaration rippleAlpha(androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material.ripple/RippleTheme \ No newline at end of file
diff --git a/compose/material/material-ripple/bcv/native/current.txt b/compose/material/material-ripple/bcv/native/current.txt index 1a86537..296025e 100644 --- a/compose/material/material-ripple/bcv/native/current.txt +++ b/compose/material/material-ripple/bcv/native/current.txt
@@ -7,8 +7,8 @@ // Library unique name: <androidx.compose.material:material-ripple> abstract interface androidx.compose.material.ripple/RippleTheme { // androidx.compose.material.ripple/RippleTheme|null[0] - abstract fun defaultColor(): androidx.compose.ui.graphics/Color // androidx.compose.material.ripple/RippleTheme.defaultColor|defaultColor(){}[0] - abstract fun rippleAlpha(): androidx.compose.material.ripple/RippleAlpha // androidx.compose.material.ripple/RippleTheme.rippleAlpha|rippleAlpha(){}[0] + abstract fun defaultColor(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material.ripple/RippleTheme.defaultColor|defaultColor(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun rippleAlpha(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material.ripple/RippleAlpha // androidx.compose.material.ripple/RippleTheme.rippleAlpha|rippleAlpha(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final object Companion { // androidx.compose.material.ripple/RippleTheme.Companion|null[0] final fun defaultRippleAlpha(androidx.compose.ui.graphics/Color, kotlin/Boolean): androidx.compose.material.ripple/RippleAlpha // androidx.compose.material.ripple/RippleTheme.Companion.defaultRippleAlpha|defaultRippleAlpha(androidx.compose.ui.graphics.Color;kotlin.Boolean){}[0] @@ -35,6 +35,20 @@ final val androidx.compose.material.ripple/LocalRippleTheme // androidx.compose.material.ripple/LocalRippleTheme|{}LocalRippleTheme[0] final fun <get-LocalRippleTheme>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material.ripple/RippleTheme> // androidx.compose.material.ripple/LocalRippleTheme.<get-LocalRippleTheme>|<get-LocalRippleTheme>(){}[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRipple$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRipple$stableprop|#static{}androidx_compose_material_ripple_CommonRipple$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRippleNode$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRippleNode$stableprop|#static{}androidx_compose_material_ripple_CommonRippleNode$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_Ripple$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_Ripple$stableprop|#static{}androidx_compose_material_ripple_Ripple$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAlpha$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAlpha$stableprop|#static{}androidx_compose_material_ripple_RippleAlpha$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAnimation$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAnimation$stableprop|#static{}androidx_compose_material_ripple_RippleAnimation$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_RippleIndicationInstance$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleIndicationInstance$stableprop|#static{}androidx_compose_material_ripple_RippleIndicationInstance$stableprop[0] +final val androidx.compose.material.ripple/androidx_compose_material_ripple_RippleNode$stableprop // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleNode$stableprop|#static{}androidx_compose_material_ripple_RippleNode$stableprop[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRipple$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRipple$stableprop_getter|androidx_compose_material_ripple_CommonRipple$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRippleNode$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_CommonRippleNode$stableprop_getter|androidx_compose_material_ripple_CommonRippleNode$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_Ripple$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_Ripple$stableprop_getter|androidx_compose_material_ripple_Ripple$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAlpha$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAlpha$stableprop_getter|androidx_compose_material_ripple_RippleAlpha$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAnimation$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleAnimation$stableprop_getter|androidx_compose_material_ripple_RippleAnimation$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_RippleIndicationInstance$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleIndicationInstance$stableprop_getter|androidx_compose_material_ripple_RippleIndicationInstance$stableprop_getter(){}[0] +final fun androidx.compose.material.ripple/androidx_compose_material_ripple_RippleNode$stableprop_getter(): kotlin/Int // androidx.compose.material.ripple/androidx_compose_material_ripple_RippleNode$stableprop_getter|androidx_compose_material_ripple_RippleNode$stableprop_getter(){}[0] final fun androidx.compose.material.ripple/createRippleModifierNode(androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/ColorProducer, kotlin/Function0<androidx.compose.material.ripple/RippleAlpha>): androidx.compose.ui.node/DelegatableNode // androidx.compose.material.ripple/createRippleModifierNode|createRippleModifierNode(androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.ColorProducer;kotlin.Function0<androidx.compose.material.ripple.RippleAlpha>){}[0] -final fun androidx.compose.material.ripple/rememberRipple(kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.foundation/Indication // androidx.compose.material.ripple/rememberRipple|rememberRipple(kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] +final fun androidx.compose.material.ripple/rememberRipple(kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/Indication // androidx.compose.material.ripple/rememberRipple|rememberRipple(kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0]
diff --git a/compose/material/material/bcv/native/current.ignore b/compose/material/material/bcv/native/current.ignore new file mode 100644 index 0000000..8c1af81 --- /dev/null +++ b/compose/material/material/bcv/native/current.ignore
@@ -0,0 +1,191 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.compose.foundation.layout/RowScope).androidx.compose.material/BottomNavigationItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.window/DialogProperties) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.window/DialogProperties) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BackdropScaffold(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.material/BackdropScaffoldState, kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit>, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Badge(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>?) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BadgedBox(kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomAppBar(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomDrawer(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.material/BottomDrawerState, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomNavigation(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomNavigation(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/BottomSheetScaffold(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.material/BottomSheetScaffoldState, kotlin/Function0<kotlin/Unit>?, kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit>, kotlin/Function0<kotlin/Unit>?, androidx.compose.material/FabPosition, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Card(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation/BorderStroke?, androidx.compose.ui.unit/Dp, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/CheckboxColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Divider(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/DropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.ui.unit/DpOffset, androidx.compose.foundation/ScrollState, androidx.compose.ui.window/PopupProperties, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/DropdownMenuItem(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.layout/PaddingValues, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/ExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material/FloatingActionButtonElevation) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/FloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material/FloatingActionButtonElevation, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/LeadingIconTab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/MaterialTheme(androidx.compose.material/Colors, androidx.compose.material/Typography, androidx.compose.material/Shapes, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/ModalBottomSheetLayout(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.material/ModalBottomSheetState, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/ModalDrawer(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.material/DrawerState, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/NavigationRail(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>?, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/NavigationRail(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>?, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/NavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors, androidx.compose.foundation.interaction/MutableInteractionSource?) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation/ScrollState, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors, androidx.compose.foundation.interaction/MutableInteractionSource?) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/ProvideTextStyle(androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/RadioButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/RadioButtonColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Scaffold(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, androidx.compose.material/ScaffoldState, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.material/FabPosition, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Scaffold(androidx.compose.ui/Modifier, androidx.compose.material/ScaffoldState, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.material/FabPosition, kotlin/Boolean, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/ScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function1<kotlin.collections/List<androidx.compose.material/TabPosition>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/SecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors, androidx.compose.foundation.interaction/MutableInteractionSource?) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Int, kotlin/Function0<kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/SliderColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Snackbar(androidx.compose.material/SnackbarData, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Snackbar(androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/SnackbarHost(androidx.compose.material/SnackbarHostState, androidx.compose.ui/Modifier, kotlin/Function1<androidx.compose.material/SnackbarData, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Surface(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Shape, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation/BorderStroke?, androidx.compose.ui.unit/Dp, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Switch(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/SwitchColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TabRow(kotlin/Int, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function1<kotlin.collections/List<androidx.compose.material/TabPosition>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.ui.text/TextStyle) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.ui.text/TextStyle) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>, androidx.compose.ui.text/TextStyle) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation/ScrollState, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors, androidx.compose.foundation.interaction/MutableInteractionSource?) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.text/KeyboardOptions, androidx.compose.foundation.text/KeyboardActions, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape, androidx.compose.material/TextFieldColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TopAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TopAppBar(androidx.compose.ui/Modifier, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>?, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/CheckboxColors) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/contentColorFor(androidx.compose.ui.graphics/Color) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberBackdropScaffoldState(androidx.compose.material/BackdropValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Function1<androidx.compose.material/BackdropValue, kotlin/Boolean>, androidx.compose.material/SnackbarHostState) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberBottomDrawerState(androidx.compose.material/BottomDrawerValue, kotlin/Function1<androidx.compose.material/BottomDrawerValue, kotlin/Boolean>, androidx.compose.animation.core/AnimationSpec<kotlin/Float>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberBottomSheetScaffoldState(androidx.compose.material/BottomSheetState, androidx.compose.material/SnackbarHostState) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberBottomSheetState(androidx.compose.material/BottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Function1<androidx.compose.material/BottomSheetValue, kotlin/Boolean>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberDrawerState(androidx.compose.material/DrawerValue, kotlin/Function1<androidx.compose.material/DrawerValue, kotlin/Boolean>) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberModalBottomSheetState(androidx.compose.material/ModalBottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>, kotlin/Function1<androidx.compose.material/ModalBottomSheetValue, kotlin/Boolean>, kotlin/Boolean) from androidx.compose.material:material +[linuxX64]: Removed declaration androidx.compose.material/rememberScaffoldState(androidx.compose.material/DrawerState, androidx.compose.material/SnackbarHostState) from androidx.compose.material:material +[linuxX64]: Removed declaration backgroundColor(kotlin/Boolean) from androidx.compose.material/ButtonColors +[linuxX64]: Removed declaration contentColor(kotlin/Boolean) from androidx.compose.material/ButtonColors +[linuxX64]: Added declaration backgroundColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/ButtonColors +[linuxX64]: Added declaration contentColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/ButtonColors +[linuxX64]: Removed declaration elevation(kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/ButtonElevation +[linuxX64]: Added declaration elevation(kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/ButtonElevation +[linuxX64]: Removed declaration borderColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState) from androidx.compose.material/CheckboxColors +[linuxX64]: Removed declaration boxColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState) from androidx.compose.material/CheckboxColors +[linuxX64]: Removed declaration checkmarkColor(androidx.compose.ui.state/ToggleableState) from androidx.compose.material/CheckboxColors +[linuxX64]: Added declaration borderColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/CheckboxColors +[linuxX64]: Added declaration boxColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/CheckboxColors +[linuxX64]: Added declaration checkmarkColor(androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/CheckboxColors +[linuxX64]: Removed declaration apply(androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp) from androidx.compose.material/ElevationOverlay +[linuxX64]: Added declaration apply(androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/ElevationOverlay +[linuxX64]: Removed declaration elevation(androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/FloatingActionButtonElevation +[linuxX64]: Added declaration elevation(androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/FloatingActionButtonElevation +[linuxX64]: Removed declaration radioColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/RadioButtonColors +[linuxX64]: Added declaration radioColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/RadioButtonColors +[linuxX64]: Removed declaration thumbColor(kotlin/Boolean) from androidx.compose.material/SliderColors +[linuxX64]: Removed declaration tickColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/SliderColors +[linuxX64]: Removed declaration trackColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/SliderColors +[linuxX64]: Added declaration thumbColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/SliderColors +[linuxX64]: Added declaration tickColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/SliderColors +[linuxX64]: Added declaration trackColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/SliderColors +[linuxX64]: Removed declaration thumbColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/SwitchColors +[linuxX64]: Removed declaration trackColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/SwitchColors +[linuxX64]: Added declaration thumbColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/SwitchColors +[linuxX64]: Added declaration trackColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/SwitchColors +[linuxX64]: Removed declaration backgroundColor(kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration cursorColor(kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration indicatorColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration labelColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration leadingIconColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration placeholderColor(kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration textColor(kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration trailingIconColor(kotlin/Boolean, kotlin/Boolean) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration leadingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/TextFieldColors +[linuxX64]: Removed declaration trailingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource) from androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration backgroundColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration cursorColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration indicatorColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration labelColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration leadingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration placeholderColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration textColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added declaration trailingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.material/TextFieldColors +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/AppBarDefaults.bottomAppBarWindowInsets.<get-bottomAppBarWindowInsets> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/AppBarDefaults.bottomAppBarWindowInsets.<get-bottomAppBarWindowInsets> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/AppBarDefaults.topAppBarWindowInsets.<get-topAppBarWindowInsets> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/AppBarDefaults.topAppBarWindowInsets.<get-topAppBarWindowInsets> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/BackdropScaffoldDefaults.frontLayerScrimColor.<get-frontLayerScrimColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/BackdropScaffoldDefaults.frontLayerScrimColor.<get-frontLayerScrimColor> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/BackdropScaffoldDefaults.frontLayerShape.<get-frontLayerShape> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/BackdropScaffoldDefaults.frontLayerShape.<get-frontLayerShape> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/BottomNavigationDefaults.windowInsets.<get-windowInsets> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/BottomNavigationDefaults.windowInsets.<get-windowInsets> +[linuxX64]: Removed declaration buttonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/ButtonDefaults +[linuxX64]: Removed declaration elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) from androidx.compose.material/ButtonDefaults +[linuxX64]: Removed declaration elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) from androidx.compose.material/ButtonDefaults +[linuxX64]: Removed declaration outlinedButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/ButtonDefaults +[linuxX64]: Removed declaration textButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/ButtonDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ButtonDefaults.outlinedBorder.<get-outlinedBorder> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ButtonDefaults.outlinedBorder.<get-outlinedBorder> +[linuxX64]: Removed declaration colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/CheckboxDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ContentAlpha.disabled.<get-disabled> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ContentAlpha.disabled.<get-disabled> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ContentAlpha.high.<get-high> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ContentAlpha.high.<get-high> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ContentAlpha.medium.<get-medium> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ContentAlpha.medium.<get-medium> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/DrawerDefaults.backgroundColor.<get-backgroundColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/DrawerDefaults.backgroundColor.<get-backgroundColor> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/DrawerDefaults.scrimColor.<get-scrimColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/DrawerDefaults.scrimColor.<get-scrimColor> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/DrawerDefaults.shape.<get-shape> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/DrawerDefaults.shape.<get-shape> +[linuxX64]: Removed declaration elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) from androidx.compose.material/FloatingActionButtonDefaults +[linuxX64]: Removed declaration elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp) from androidx.compose.material/FloatingActionButtonDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/MaterialTheme.colors.<get-colors> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/MaterialTheme.colors.<get-colors> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/MaterialTheme.shapes.<get-shapes> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/MaterialTheme.shapes.<get-shapes> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/MaterialTheme.typography.<get-typography> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/MaterialTheme.typography.<get-typography> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ModalBottomSheetDefaults.scrimColor.<get-scrimColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ModalBottomSheetDefaults.scrimColor.<get-scrimColor> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/NavigationRailDefaults.windowInsets.<get-windowInsets> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/NavigationRailDefaults.windowInsets.<get-windowInsets> +[linuxX64]: Removed declaration colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/RadioButtonDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets> +[linuxX64]: Removed declaration colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/SliderDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/SnackbarDefaults.backgroundColor.<get-backgroundColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/SnackbarDefaults.backgroundColor.<get-backgroundColor> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/SnackbarDefaults.primaryActionColor.<get-primaryActionColor> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/SnackbarDefaults.primaryActionColor.<get-primaryActionColor> +[linuxX64]: Removed declaration colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Float, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Float, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/SwitchDefaults +[linuxX64]: Removed declaration Divider(androidx.compose.ui/Modifier, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color) from androidx.compose.material/TabRowDefaults +[linuxX64]: Removed declaration Indicator(androidx.compose.ui/Modifier, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color) from androidx.compose.material/TabRowDefaults +[linuxX64]: Removed declaration outlinedTextFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/TextFieldDefaults +[linuxX64]: Removed declaration textFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color) from androidx.compose.material/TextFieldDefaults +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/TextFieldDefaults.OutlinedTextFieldShape.<get-OutlinedTextFieldShape> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/TextFieldDefaults.OutlinedTextFieldShape.<get-OutlinedTextFieldShape> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.material/TextFieldDefaults.TextFieldShape.<get-TextFieldShape> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.material/TextFieldDefaults.TextFieldShape.<get-TextFieldShape> \ No newline at end of file
diff --git a/compose/material/material/bcv/native/current.txt b/compose/material/material/bcv/native/current.txt index 15635e7..de856f3 100644 --- a/compose/material/material/bcv/native/current.txt +++ b/compose/material/material/bcv/native/current.txt
@@ -114,36 +114,36 @@ } abstract interface androidx.compose.material/ButtonColors { // androidx.compose.material/ButtonColors|null[0] - abstract fun backgroundColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/ButtonColors.backgroundColor|backgroundColor(kotlin.Boolean){}[0] - abstract fun contentColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/ButtonColors.contentColor|contentColor(kotlin.Boolean){}[0] + abstract fun backgroundColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/ButtonColors.backgroundColor|backgroundColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun contentColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/ButtonColors.contentColor|contentColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/ButtonElevation { // androidx.compose.material/ButtonElevation|null[0] - abstract fun elevation(kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.material/ButtonElevation.elevation|elevation(kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource){}[0] + abstract fun elevation(kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.material/ButtonElevation.elevation|elevation(kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/CheckboxColors { // androidx.compose.material/CheckboxColors|null[0] - abstract fun borderColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.borderColor|borderColor(kotlin.Boolean;androidx.compose.ui.state.ToggleableState){}[0] - abstract fun boxColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.boxColor|boxColor(kotlin.Boolean;androidx.compose.ui.state.ToggleableState){}[0] - abstract fun checkmarkColor(androidx.compose.ui.state/ToggleableState): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.checkmarkColor|checkmarkColor(androidx.compose.ui.state.ToggleableState){}[0] + abstract fun borderColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.borderColor|borderColor(kotlin.Boolean;androidx.compose.ui.state.ToggleableState;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun boxColor(kotlin/Boolean, androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.boxColor|boxColor(kotlin.Boolean;androidx.compose.ui.state.ToggleableState;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun checkmarkColor(androidx.compose.ui.state/ToggleableState, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/CheckboxColors.checkmarkColor|checkmarkColor(androidx.compose.ui.state.ToggleableState;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/ElevationOverlay { // androidx.compose.material/ElevationOverlay|null[0] - abstract fun apply(androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp): androidx.compose.ui.graphics/Color // androidx.compose.material/ElevationOverlay.apply|apply(androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] + abstract fun apply(androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/ElevationOverlay.apply|apply(androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/FloatingActionButtonElevation { // androidx.compose.material/FloatingActionButtonElevation|null[0] - abstract fun elevation(androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.material/FloatingActionButtonElevation.elevation|elevation(androidx.compose.foundation.interaction.InteractionSource){}[0] + abstract fun elevation(androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.unit/Dp> // androidx.compose.material/FloatingActionButtonElevation.elevation|elevation(androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/RadioButtonColors { // androidx.compose.material/RadioButtonColors|null[0] - abstract fun radioColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/RadioButtonColors.radioColor|radioColor(kotlin.Boolean;kotlin.Boolean){}[0] + abstract fun radioColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/RadioButtonColors.radioColor|radioColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/SliderColors { // androidx.compose.material/SliderColors|null[0] - abstract fun thumbColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.thumbColor|thumbColor(kotlin.Boolean){}[0] - abstract fun tickColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.tickColor|tickColor(kotlin.Boolean;kotlin.Boolean){}[0] - abstract fun trackColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.trackColor|trackColor(kotlin.Boolean;kotlin.Boolean){}[0] + abstract fun thumbColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.thumbColor|thumbColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun tickColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.tickColor|tickColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun trackColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SliderColors.trackColor|trackColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/SnackbarData { // androidx.compose.material/SnackbarData|null[0] @@ -159,21 +159,21 @@ } abstract interface androidx.compose.material/SwitchColors { // androidx.compose.material/SwitchColors|null[0] - abstract fun thumbColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SwitchColors.thumbColor|thumbColor(kotlin.Boolean;kotlin.Boolean){}[0] - abstract fun trackColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SwitchColors.trackColor|trackColor(kotlin.Boolean;kotlin.Boolean){}[0] + abstract fun thumbColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SwitchColors.thumbColor|thumbColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun trackColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/SwitchColors.trackColor|trackColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material/TextFieldColors { // androidx.compose.material/TextFieldColors|null[0] - abstract fun backgroundColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.backgroundColor|backgroundColor(kotlin.Boolean){}[0] - abstract fun cursorColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.cursorColor|cursorColor(kotlin.Boolean){}[0] - abstract fun indicatorColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.indicatorColor|indicatorColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource){}[0] - abstract fun labelColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.labelColor|labelColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource){}[0] - abstract fun leadingIconColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.leadingIconColor|leadingIconColor(kotlin.Boolean;kotlin.Boolean){}[0] - abstract fun placeholderColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.placeholderColor|placeholderColor(kotlin.Boolean){}[0] - abstract fun textColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.textColor|textColor(kotlin.Boolean){}[0] - abstract fun trailingIconColor(kotlin/Boolean, kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.trailingIconColor|trailingIconColor(kotlin.Boolean;kotlin.Boolean){}[0] - open fun leadingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.leadingIconColor|leadingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource){}[0] - open fun trailingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.trailingIconColor|trailingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource){}[0] + abstract fun backgroundColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.backgroundColor|backgroundColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun cursorColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.cursorColor|cursorColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun indicatorColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.indicatorColor|indicatorColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun labelColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.labelColor|labelColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun leadingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.leadingIconColor|leadingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun placeholderColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.placeholderColor|placeholderColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun textColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.textColor|textColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun trailingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.trailingIconColor|trailingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + open fun leadingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.leadingIconColor|leadingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + open fun trailingIconColor(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material/TextFieldColors.trailingIconColor|trailingIconColor(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final class androidx.compose.material/BackdropScaffoldState { // androidx.compose.material/BackdropScaffoldState|null[0] @@ -468,9 +468,9 @@ final val TopAppBarElevation // androidx.compose.material/AppBarDefaults.TopAppBarElevation|{}TopAppBarElevation[0] final fun <get-TopAppBarElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material/AppBarDefaults.TopAppBarElevation.<get-TopAppBarElevation>|<get-TopAppBarElevation>(){}[0] final val bottomAppBarWindowInsets // androidx.compose.material/AppBarDefaults.bottomAppBarWindowInsets|{}bottomAppBarWindowInsets[0] - final fun <get-bottomAppBarWindowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/AppBarDefaults.bottomAppBarWindowInsets.<get-bottomAppBarWindowInsets>|<get-bottomAppBarWindowInsets>(){}[0] + final fun <get-bottomAppBarWindowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/AppBarDefaults.bottomAppBarWindowInsets.<get-bottomAppBarWindowInsets>|<get-bottomAppBarWindowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val topAppBarWindowInsets // androidx.compose.material/AppBarDefaults.topAppBarWindowInsets|{}topAppBarWindowInsets[0] - final fun <get-topAppBarWindowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/AppBarDefaults.topAppBarWindowInsets.<get-topAppBarWindowInsets>|<get-topAppBarWindowInsets>(){}[0] + final fun <get-topAppBarWindowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/AppBarDefaults.topAppBarWindowInsets.<get-topAppBarWindowInsets>|<get-topAppBarWindowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/BackdropScaffoldDefaults { // androidx.compose.material/BackdropScaffoldDefaults|null[0] @@ -483,16 +483,16 @@ final val PeekHeight // androidx.compose.material/BackdropScaffoldDefaults.PeekHeight|{}PeekHeight[0] final fun <get-PeekHeight>(): androidx.compose.ui.unit/Dp // androidx.compose.material/BackdropScaffoldDefaults.PeekHeight.<get-PeekHeight>|<get-PeekHeight>(){}[0] final val frontLayerScrimColor // androidx.compose.material/BackdropScaffoldDefaults.frontLayerScrimColor|{}frontLayerScrimColor[0] - final fun <get-frontLayerScrimColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/BackdropScaffoldDefaults.frontLayerScrimColor.<get-frontLayerScrimColor>|<get-frontLayerScrimColor>(){}[0] + final fun <get-frontLayerScrimColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/BackdropScaffoldDefaults.frontLayerScrimColor.<get-frontLayerScrimColor>|<get-frontLayerScrimColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val frontLayerShape // androidx.compose.material/BackdropScaffoldDefaults.frontLayerShape|{}frontLayerShape[0] - final fun <get-frontLayerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material/BackdropScaffoldDefaults.frontLayerShape.<get-frontLayerShape>|<get-frontLayerShape>(){}[0] + final fun <get-frontLayerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material/BackdropScaffoldDefaults.frontLayerShape.<get-frontLayerShape>|<get-frontLayerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/BottomNavigationDefaults { // androidx.compose.material/BottomNavigationDefaults|null[0] final val Elevation // androidx.compose.material/BottomNavigationDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material/BottomNavigationDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val windowInsets // androidx.compose.material/BottomNavigationDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/BottomNavigationDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/BottomNavigationDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/BottomSheetScaffoldDefaults { // androidx.compose.material/BottomSheetScaffoldDefaults|null[0] @@ -523,26 +523,26 @@ final val TextButtonContentPadding // androidx.compose.material/ButtonDefaults.TextButtonContentPadding|{}TextButtonContentPadding[0] final fun <get-TextButtonContentPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material/ButtonDefaults.TextButtonContentPadding.<get-TextButtonContentPadding>|<get-TextButtonContentPadding>(){}[0] final val outlinedBorder // androidx.compose.material/ButtonDefaults.outlinedBorder|{}outlinedBorder[0] - final fun <get-outlinedBorder>(): androidx.compose.foundation/BorderStroke // androidx.compose.material/ButtonDefaults.outlinedBorder.<get-outlinedBorder>|<get-outlinedBorder>(){}[0] + final fun <get-outlinedBorder>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material/ButtonDefaults.outlinedBorder.<get-outlinedBorder>|<get-outlinedBorder>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun buttonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.buttonColors|buttonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material/ButtonElevation // androidx.compose.material/ButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun elevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material/ButtonElevation // androidx.compose.material/ButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun outlinedButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun textButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.textButtonColors|textButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun buttonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.buttonColors|buttonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ButtonElevation // androidx.compose.material/ButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ButtonElevation // androidx.compose.material/ButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun textButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ButtonColors // androidx.compose.material/ButtonDefaults.textButtonColors|textButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/CheckboxDefaults { // androidx.compose.material/CheckboxDefaults|null[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/CheckboxColors // androidx.compose.material/CheckboxDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/CheckboxColors // androidx.compose.material/CheckboxDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/ContentAlpha { // androidx.compose.material/ContentAlpha|null[0] final val disabled // androidx.compose.material/ContentAlpha.disabled|{}disabled[0] - final fun <get-disabled>(): kotlin/Float // androidx.compose.material/ContentAlpha.disabled.<get-disabled>|<get-disabled>(){}[0] + final fun <get-disabled>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Float // androidx.compose.material/ContentAlpha.disabled.<get-disabled>|<get-disabled>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val high // androidx.compose.material/ContentAlpha.high|{}high[0] - final fun <get-high>(): kotlin/Float // androidx.compose.material/ContentAlpha.high.<get-high>|<get-high>(){}[0] + final fun <get-high>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Float // androidx.compose.material/ContentAlpha.high.<get-high>|<get-high>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val medium // androidx.compose.material/ContentAlpha.medium|{}medium[0] - final fun <get-medium>(): kotlin/Float // androidx.compose.material/ContentAlpha.medium.<get-medium>|<get-medium>(){}[0] + final fun <get-medium>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Float // androidx.compose.material/ContentAlpha.medium.<get-medium>|<get-medium>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/DrawerDefaults { // androidx.compose.material/DrawerDefaults|null[0] @@ -554,25 +554,25 @@ final val Elevation // androidx.compose.material/DrawerDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material/DrawerDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val backgroundColor // androidx.compose.material/DrawerDefaults.backgroundColor|{}backgroundColor[0] - final fun <get-backgroundColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/DrawerDefaults.backgroundColor.<get-backgroundColor>|<get-backgroundColor>(){}[0] + final fun <get-backgroundColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/DrawerDefaults.backgroundColor.<get-backgroundColor>|<get-backgroundColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val scrimColor // androidx.compose.material/DrawerDefaults.scrimColor|{}scrimColor[0] - final fun <get-scrimColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/DrawerDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(){}[0] + final fun <get-scrimColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/DrawerDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material/DrawerDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material/DrawerDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material/DrawerDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/FloatingActionButtonDefaults { // androidx.compose.material/FloatingActionButtonDefaults|null[0] - final fun elevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material/FloatingActionButtonElevation // androidx.compose.material/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun elevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material/FloatingActionButtonElevation // androidx.compose.material/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/FloatingActionButtonElevation // androidx.compose.material/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/FloatingActionButtonElevation // androidx.compose.material/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/MaterialTheme { // androidx.compose.material/MaterialTheme|null[0] final val colors // androidx.compose.material/MaterialTheme.colors|{}colors[0] - final fun <get-colors>(): androidx.compose.material/Colors // androidx.compose.material/MaterialTheme.colors.<get-colors>|<get-colors>(){}[0] + final fun <get-colors>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material/Colors // androidx.compose.material/MaterialTheme.colors.<get-colors>|<get-colors>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shapes // androidx.compose.material/MaterialTheme.shapes|{}shapes[0] - final fun <get-shapes>(): androidx.compose.material/Shapes // androidx.compose.material/MaterialTheme.shapes.<get-shapes>|<get-shapes>(){}[0] + final fun <get-shapes>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material/Shapes // androidx.compose.material/MaterialTheme.shapes.<get-shapes>|<get-shapes>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val typography // androidx.compose.material/MaterialTheme.typography|{}typography[0] - final fun <get-typography>(): androidx.compose.material/Typography // androidx.compose.material/MaterialTheme.typography.<get-typography>|<get-typography>(){}[0] + final fun <get-typography>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material/Typography // androidx.compose.material/MaterialTheme.typography.<get-typography>|<get-typography>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/MenuDefaults { // androidx.compose.material/MenuDefaults|null[0] @@ -586,14 +586,14 @@ final val Elevation // androidx.compose.material/ModalBottomSheetDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material/ModalBottomSheetDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val scrimColor // androidx.compose.material/ModalBottomSheetDefaults.scrimColor|{}scrimColor[0] - final fun <get-scrimColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/ModalBottomSheetDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(){}[0] + final fun <get-scrimColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/ModalBottomSheetDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/NavigationRailDefaults { // androidx.compose.material/NavigationRailDefaults|null[0] final val Elevation // androidx.compose.material/NavigationRailDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material/NavigationRailDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val windowInsets // androidx.compose.material/NavigationRailDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/NavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/NavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/ProgressIndicatorDefaults { // androidx.compose.material/ProgressIndicatorDefaults|null[0] @@ -607,7 +607,7 @@ } final object androidx.compose.material/RadioButtonDefaults { // androidx.compose.material/RadioButtonDefaults|null[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/RadioButtonColors // androidx.compose.material/RadioButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/RadioButtonColors // androidx.compose.material/RadioButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/RippleDefaults { // androidx.compose.material/RippleDefaults|null[0] @@ -617,7 +617,7 @@ final object androidx.compose.material/ScaffoldDefaults { // androidx.compose.material/ScaffoldDefaults|null[0] final val contentWindowInsets // androidx.compose.material/ScaffoldDefaults.contentWindowInsets|{}contentWindowInsets[0] - final fun <get-contentWindowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets>|<get-contentWindowInsets>(){}[0] + final fun <get-contentWindowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets>|<get-contentWindowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/SliderDefaults { // androidx.compose.material/SliderDefaults|null[0] @@ -632,14 +632,14 @@ final const val TickAlpha // androidx.compose.material/SliderDefaults.TickAlpha|{}TickAlpha[0] final fun <get-TickAlpha>(): kotlin/Float // androidx.compose.material/SliderDefaults.TickAlpha.<get-TickAlpha>|<get-TickAlpha>(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/SliderColors // androidx.compose.material/SliderDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material/SliderColors // androidx.compose.material/SliderDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/SnackbarDefaults { // androidx.compose.material/SnackbarDefaults|null[0] final val backgroundColor // androidx.compose.material/SnackbarDefaults.backgroundColor|{}backgroundColor[0] - final fun <get-backgroundColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/SnackbarDefaults.backgroundColor.<get-backgroundColor>|<get-backgroundColor>(){}[0] + final fun <get-backgroundColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/SnackbarDefaults.backgroundColor.<get-backgroundColor>|<get-backgroundColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val primaryActionColor // androidx.compose.material/SnackbarDefaults.primaryActionColor|{}primaryActionColor[0] - final fun <get-primaryActionColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material/SnackbarDefaults.primaryActionColor.<get-primaryActionColor>|<get-primaryActionColor>(){}[0] + final fun <get-primaryActionColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/SnackbarDefaults.primaryActionColor.<get-primaryActionColor>|<get-primaryActionColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material/SwipeableDefaults { // androidx.compose.material/SwipeableDefaults|null[0] @@ -657,7 +657,7 @@ } final object androidx.compose.material/SwitchDefaults { // androidx.compose.material/SwitchDefaults|null[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/SwitchColors // androidx.compose.material/SwitchDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Float;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Float;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Float, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Float, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material/SwitchColors // androidx.compose.material/SwitchDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Float;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Float;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/TabRowDefaults { // androidx.compose.material/TabRowDefaults|null[0] @@ -672,8 +672,8 @@ final fun <get-ScrollableTabRowPadding>(): androidx.compose.ui.unit/Dp // androidx.compose.material/TabRowDefaults.ScrollableTabRowPadding.<get-ScrollableTabRowPadding>|<get-ScrollableTabRowPadding>(){}[0] final fun (androidx.compose.ui/Modifier).tabIndicatorOffset(androidx.compose.material/TabPosition): androidx.compose.ui/Modifier // androidx.compose.material/TabRowDefaults.tabIndicatorOffset|tabIndicatorOffset@androidx.compose.ui.Modifier(androidx.compose.material.TabPosition){}[0] - final fun Divider(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/TabRowDefaults.Divider|Divider(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] - final fun Indicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/TabRowDefaults.Indicator|Indicator(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] + final fun Divider(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TabRowDefaults.Divider|Divider(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Indicator(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TabRowDefaults.Indicator|Indicator(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material/TextFieldDefaults { // androidx.compose.material/TextFieldDefaults|null[0] @@ -691,23 +691,28 @@ final val MinWidth // androidx.compose.material/TextFieldDefaults.MinWidth|{}MinWidth[0] final fun <get-MinWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material/TextFieldDefaults.MinWidth.<get-MinWidth>|<get-MinWidth>(){}[0] final val OutlinedTextFieldShape // androidx.compose.material/TextFieldDefaults.OutlinedTextFieldShape|{}OutlinedTextFieldShape[0] - final fun <get-OutlinedTextFieldShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material/TextFieldDefaults.OutlinedTextFieldShape.<get-OutlinedTextFieldShape>|<get-OutlinedTextFieldShape>(){}[0] + final fun <get-OutlinedTextFieldShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material/TextFieldDefaults.OutlinedTextFieldShape.<get-OutlinedTextFieldShape>|<get-OutlinedTextFieldShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val TextFieldShape // androidx.compose.material/TextFieldDefaults.TextFieldShape|{}TextFieldShape[0] - final fun <get-TextFieldShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material/TextFieldDefaults.TextFieldShape.<get-TextFieldShape>|<get-TextFieldShape>(){}[0] + final fun <get-TextFieldShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material/TextFieldDefaults.TextFieldShape.<get-TextFieldShape>|<get-TextFieldShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val UnfocusedBorderThickness // androidx.compose.material/TextFieldDefaults.UnfocusedBorderThickness|{}UnfocusedBorderThickness[0] final fun <get-UnfocusedBorderThickness>(): androidx.compose.ui.unit/Dp // androidx.compose.material/TextFieldDefaults.UnfocusedBorderThickness.<get-UnfocusedBorderThickness>|<get-UnfocusedBorderThickness>(){}[0] final fun (androidx.compose.ui/Modifier).indicatorLine(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material/TextFieldColors, androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.ui/Modifier // androidx.compose.material/TextFieldDefaults.indicatorLine|indicatorLine@androidx.compose.ui.Modifier(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material.TextFieldColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun BorderBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material/TextFieldColors, androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/TextFieldDefaults.BorderBox|BorderBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material.TextFieldColors;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun OutlinedTextFieldDecorationBox(kotlin/String, kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function0<kotlin/Unit> = ...) // androidx.compose.material/TextFieldDefaults.OutlinedTextFieldDecorationBox|OutlinedTextFieldDecorationBox(kotlin.String;kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function0<kotlin.Unit>){}[0] - final fun TextFieldDecorationBox(kotlin/String, kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ...) // androidx.compose.material/TextFieldDefaults.TextFieldDecorationBox|TextFieldDecorationBox(kotlin.String;kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.layout.PaddingValues){}[0] - final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/TextFieldColors // androidx.compose.material/TextFieldDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun BorderBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material/TextFieldColors, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TextFieldDefaults.BorderBox|BorderBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material.TextFieldColors;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun OutlinedTextFieldDecorationBox(kotlin/String, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextFieldDefaults.OutlinedTextFieldDecorationBox|OutlinedTextFieldDecorationBox(kotlin.String;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun TextFieldDecorationBox(kotlin/String, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextFieldDefaults.TextFieldDecorationBox|TextFieldDecorationBox(kotlin.String;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material/TextFieldColors // androidx.compose.material/TextFieldDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun outlinedTextFieldPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material/TextFieldDefaults.outlinedTextFieldPadding|outlinedTextFieldPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun textFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/TextFieldColors // androidx.compose.material/TextFieldDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun textFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material/TextFieldColors // androidx.compose.material/TextFieldDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun textFieldWithLabelPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material/TextFieldDefaults.textFieldWithLabelPadding|textFieldWithLabelPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun textFieldWithoutLabelPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material/TextFieldDefaults.textFieldWithoutLabelPadding|textFieldWithoutLabelPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] } +final val androidx.compose.material.internal/androidx_compose_material_internal_Icons$stableprop // androidx.compose.material.internal/androidx_compose_material_internal_Icons$stableprop|#static{}androidx_compose_material_internal_Icons$stableprop[0] +final val androidx.compose.material.internal/androidx_compose_material_internal_Icons_Filled$stableprop // androidx.compose.material.internal/androidx_compose_material_internal_Icons_Filled$stableprop|#static{}androidx_compose_material_internal_Icons_Filled$stableprop[0] +final val androidx.compose.material.internal/androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.material.internal/androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop[0] +final val androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop // androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop|#static{}androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop[0] +final val androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshState$stableprop // androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshState$stableprop|#static{}androidx_compose_material_pullrefresh_PullRefreshState$stableprop[0] final val androidx.compose.material/LocalAbsoluteElevation // androidx.compose.material/LocalAbsoluteElevation|{}LocalAbsoluteElevation[0] final fun <get-LocalAbsoluteElevation>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.unit/Dp> // androidx.compose.material/LocalAbsoluteElevation.<get-LocalAbsoluteElevation>|<get-LocalAbsoluteElevation>(){}[0] final val androidx.compose.material/LocalContentAlpha // androidx.compose.material/LocalContentAlpha|{}LocalContentAlpha[0] @@ -720,98 +725,217 @@ final fun <get-LocalRippleConfiguration>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material/RippleConfiguration?> // androidx.compose.material/LocalRippleConfiguration.<get-LocalRippleConfiguration>|<get-LocalRippleConfiguration>(){}[0] final val androidx.compose.material/LocalTextStyle // androidx.compose.material/LocalTextStyle|{}LocalTextStyle[0] final fun <get-LocalTextStyle>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.text/TextStyle> // androidx.compose.material/LocalTextStyle.<get-LocalTextStyle>|<get-LocalTextStyle>(){}[0] +final val androidx.compose.material/androidx_compose_material_AnchoredDragFinishedSignal$stableprop // androidx.compose.material/androidx_compose_material_AnchoredDragFinishedSignal$stableprop|#static{}androidx_compose_material_AnchoredDragFinishedSignal$stableprop[0] +final val androidx.compose.material/androidx_compose_material_AnchoredDraggableDefaults$stableprop // androidx.compose.material/androidx_compose_material_AnchoredDraggableDefaults$stableprop|#static{}androidx_compose_material_AnchoredDraggableDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_AnchoredDraggableState$stableprop // androidx.compose.material/androidx_compose_material_AnchoredDraggableState$stableprop|#static{}androidx_compose_material_AnchoredDraggableState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_AppBarDefaults$stableprop // androidx.compose.material/androidx_compose_material_AppBarDefaults$stableprop|#static{}androidx_compose_material_AppBarDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BackdropScaffoldDefaults$stableprop // androidx.compose.material/androidx_compose_material_BackdropScaffoldDefaults$stableprop|#static{}androidx_compose_material_BackdropScaffoldDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BackdropScaffoldState$stableprop // androidx.compose.material/androidx_compose_material_BackdropScaffoldState$stableprop|#static{}androidx_compose_material_BackdropScaffoldState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BottomDrawerState$stableprop // androidx.compose.material/androidx_compose_material_BottomDrawerState$stableprop|#static{}androidx_compose_material_BottomDrawerState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BottomNavigationDefaults$stableprop // androidx.compose.material/androidx_compose_material_BottomNavigationDefaults$stableprop|#static{}androidx_compose_material_BottomNavigationDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BottomSheetScaffoldDefaults$stableprop // androidx.compose.material/androidx_compose_material_BottomSheetScaffoldDefaults$stableprop|#static{}androidx_compose_material_BottomSheetScaffoldDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BottomSheetScaffoldState$stableprop // androidx.compose.material/androidx_compose_material_BottomSheetScaffoldState$stableprop|#static{}androidx_compose_material_BottomSheetScaffoldState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_BottomSheetState$stableprop // androidx.compose.material/androidx_compose_material_BottomSheetState$stableprop|#static{}androidx_compose_material_BottomSheetState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ButtonDefaults$stableprop // androidx.compose.material/androidx_compose_material_ButtonDefaults$stableprop|#static{}androidx_compose_material_ButtonDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_CheckboxDefaults$stableprop // androidx.compose.material/androidx_compose_material_CheckboxDefaults$stableprop|#static{}androidx_compose_material_CheckboxDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ChipDefaults$stableprop // androidx.compose.material/androidx_compose_material_ChipDefaults$stableprop|#static{}androidx_compose_material_ChipDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_Colors$stableprop // androidx.compose.material/androidx_compose_material_Colors$stableprop|#static{}androidx_compose_material_Colors$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ContentAlpha$stableprop // androidx.compose.material/androidx_compose_material_ContentAlpha$stableprop|#static{}androidx_compose_material_ContentAlpha$stableprop[0] +final val androidx.compose.material/androidx_compose_material_DismissState$stableprop // androidx.compose.material/androidx_compose_material_DismissState$stableprop|#static{}androidx_compose_material_DismissState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_DraggableAnchorsConfig$stableprop // androidx.compose.material/androidx_compose_material_DraggableAnchorsConfig$stableprop|#static{}androidx_compose_material_DraggableAnchorsConfig$stableprop[0] +final val androidx.compose.material/androidx_compose_material_DrawerDefaults$stableprop // androidx.compose.material/androidx_compose_material_DrawerDefaults$stableprop|#static{}androidx_compose_material_DrawerDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_DrawerState$stableprop // androidx.compose.material/androidx_compose_material_DrawerState$stableprop|#static{}androidx_compose_material_DrawerState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_DropdownMenuPositionProvider$stableprop // androidx.compose.material/androidx_compose_material_DropdownMenuPositionProvider$stableprop|#static{}androidx_compose_material_DropdownMenuPositionProvider$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop // androidx.compose.material/androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop|#static{}androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ExposedDropdownMenuDefaults$stableprop // androidx.compose.material/androidx_compose_material_ExposedDropdownMenuDefaults$stableprop|#static{}androidx_compose_material_ExposedDropdownMenuDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_FabPlacement$stableprop // androidx.compose.material/androidx_compose_material_FabPlacement$stableprop|#static{}androidx_compose_material_FabPlacement$stableprop[0] +final val androidx.compose.material/androidx_compose_material_FixedThreshold$stableprop // androidx.compose.material/androidx_compose_material_FixedThreshold$stableprop|#static{}androidx_compose_material_FixedThreshold$stableprop[0] +final val androidx.compose.material/androidx_compose_material_FloatingActionButtonDefaults$stableprop // androidx.compose.material/androidx_compose_material_FloatingActionButtonDefaults$stableprop|#static{}androidx_compose_material_FloatingActionButtonDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_FractionalThreshold$stableprop // androidx.compose.material/androidx_compose_material_FractionalThreshold$stableprop|#static{}androidx_compose_material_FractionalThreshold$stableprop[0] +final val androidx.compose.material/androidx_compose_material_InternalAtomicReference$stableprop // androidx.compose.material/androidx_compose_material_InternalAtomicReference$stableprop|#static{}androidx_compose_material_InternalAtomicReference$stableprop[0] +final val androidx.compose.material/androidx_compose_material_InternalMutatorMutex$stableprop // androidx.compose.material/androidx_compose_material_InternalMutatorMutex$stableprop|#static{}androidx_compose_material_InternalMutatorMutex$stableprop[0] +final val androidx.compose.material/androidx_compose_material_MaterialTheme$stableprop // androidx.compose.material/androidx_compose_material_MaterialTheme$stableprop|#static{}androidx_compose_material_MaterialTheme$stableprop[0] +final val androidx.compose.material/androidx_compose_material_MenuDefaults$stableprop // androidx.compose.material/androidx_compose_material_MenuDefaults$stableprop|#static{}androidx_compose_material_MenuDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_MinimumInteractiveModifier$stableprop // androidx.compose.material/androidx_compose_material_MinimumInteractiveModifier$stableprop|#static{}androidx_compose_material_MinimumInteractiveModifier$stableprop[0] +final val androidx.compose.material/androidx_compose_material_MinimumInteractiveModifierNode$stableprop // androidx.compose.material/androidx_compose_material_MinimumInteractiveModifierNode$stableprop|#static{}androidx_compose_material_MinimumInteractiveModifierNode$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ModalBottomSheetDefaults$stableprop // androidx.compose.material/androidx_compose_material_ModalBottomSheetDefaults$stableprop|#static{}androidx_compose_material_ModalBottomSheetDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ModalBottomSheetState$stableprop // androidx.compose.material/androidx_compose_material_ModalBottomSheetState$stableprop|#static{}androidx_compose_material_ModalBottomSheetState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_MutableWindowInsets$stableprop // androidx.compose.material/androidx_compose_material_MutableWindowInsets$stableprop|#static{}androidx_compose_material_MutableWindowInsets$stableprop[0] +final val androidx.compose.material/androidx_compose_material_NavigationRailDefaults$stableprop // androidx.compose.material/androidx_compose_material_NavigationRailDefaults$stableprop|#static{}androidx_compose_material_NavigationRailDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ProgressIndicatorDefaults$stableprop // androidx.compose.material/androidx_compose_material_ProgressIndicatorDefaults$stableprop|#static{}androidx_compose_material_ProgressIndicatorDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_RadioButtonDefaults$stableprop // androidx.compose.material/androidx_compose_material_RadioButtonDefaults$stableprop|#static{}androidx_compose_material_RadioButtonDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ResistanceConfig$stableprop // androidx.compose.material/androidx_compose_material_ResistanceConfig$stableprop|#static{}androidx_compose_material_ResistanceConfig$stableprop[0] +final val androidx.compose.material/androidx_compose_material_RippleConfiguration$stableprop // androidx.compose.material/androidx_compose_material_RippleConfiguration$stableprop|#static{}androidx_compose_material_RippleConfiguration$stableprop[0] +final val androidx.compose.material/androidx_compose_material_RippleDefaults$stableprop // androidx.compose.material/androidx_compose_material_RippleDefaults$stableprop|#static{}androidx_compose_material_RippleDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ScaffoldDefaults$stableprop // androidx.compose.material/androidx_compose_material_ScaffoldDefaults$stableprop|#static{}androidx_compose_material_ScaffoldDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_ScaffoldState$stableprop // androidx.compose.material/androidx_compose_material_ScaffoldState$stableprop|#static{}androidx_compose_material_ScaffoldState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_Shapes$stableprop // androidx.compose.material/androidx_compose_material_Shapes$stableprop|#static{}androidx_compose_material_Shapes$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SliderDefaults$stableprop // androidx.compose.material/androidx_compose_material_SliderDefaults$stableprop|#static{}androidx_compose_material_SliderDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SnackbarDefaults$stableprop // androidx.compose.material/androidx_compose_material_SnackbarDefaults$stableprop|#static{}androidx_compose_material_SnackbarDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SnackbarHostState$stableprop // androidx.compose.material/androidx_compose_material_SnackbarHostState$stableprop|#static{}androidx_compose_material_SnackbarHostState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SwipeProgress$stableprop // androidx.compose.material/androidx_compose_material_SwipeProgress$stableprop|#static{}androidx_compose_material_SwipeProgress$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SwipeableDefaults$stableprop // androidx.compose.material/androidx_compose_material_SwipeableDefaults$stableprop|#static{}androidx_compose_material_SwipeableDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SwipeableState$stableprop // androidx.compose.material/androidx_compose_material_SwipeableState$stableprop|#static{}androidx_compose_material_SwipeableState$stableprop[0] +final val androidx.compose.material/androidx_compose_material_SwitchDefaults$stableprop // androidx.compose.material/androidx_compose_material_SwitchDefaults$stableprop|#static{}androidx_compose_material_SwitchDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_TabPosition$stableprop // androidx.compose.material/androidx_compose_material_TabPosition$stableprop|#static{}androidx_compose_material_TabPosition$stableprop[0] +final val androidx.compose.material/androidx_compose_material_TabRowDefaults$stableprop // androidx.compose.material/androidx_compose_material_TabRowDefaults$stableprop|#static{}androidx_compose_material_TabRowDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_TextFieldDefaults$stableprop // androidx.compose.material/androidx_compose_material_TextFieldDefaults$stableprop|#static{}androidx_compose_material_TextFieldDefaults$stableprop[0] +final val androidx.compose.material/androidx_compose_material_Typography$stableprop // androidx.compose.material/androidx_compose_material_Typography$stableprop|#static{}androidx_compose_material_Typography$stableprop[0] +final val androidx.compose.material/androidx_compose_material_WindowBoundsCalculator$stableprop // androidx.compose.material/androidx_compose_material_WindowBoundsCalculator$stableprop|#static{}androidx_compose_material_WindowBoundsCalculator$stableprop[0] final val androidx.compose.material/primarySurface // androidx.compose.material/primarySurface|@androidx.compose.material.Colors{}primarySurface[0] final fun (androidx.compose.material/Colors).<get-primarySurface>(): androidx.compose.ui.graphics/Color // androidx.compose.material/primarySurface.<get-primarySurface>|<get-primarySurface>@androidx.compose.material.Colors(){}[0] -final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.material/BottomNavigationItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/BottomNavigationItem|BottomNavigationItem@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] +final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.material/BottomNavigationItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomNavigationItem|BottomNavigationItem@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun (androidx.compose.material/Colors).androidx.compose.material/contentColorFor(androidx.compose.ui.graphics/Color): androidx.compose.ui.graphics/Color // androidx.compose.material/contentColorFor|contentColorFor@androidx.compose.material.Colors(androidx.compose.ui.graphics.Color){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.material/minimumInteractiveComponentSize(): androidx.compose.ui/Modifier // androidx.compose.material/minimumInteractiveComponentSize|minimumInteractiveComponentSize@androidx.compose.ui.Modifier(){}[0] -final fun androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.window/DialogProperties = ...) // androidx.compose.material/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.window.DialogProperties){}[0] -final fun androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.window/DialogProperties = ...) // androidx.compose.material/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.window.DialogProperties){}[0] -final fun androidx.compose.material/BackdropScaffold(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material/BackdropScaffoldState = ..., kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit> = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/BackdropScaffold|BackdropScaffold(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material.BackdropScaffoldState;kotlin.Function1<androidx.compose.material.SnackbarHostState,kotlin.Unit>;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] +final fun androidx.compose.material.internal/androidx_compose_material_internal_Icons$stableprop_getter(): kotlin/Int // androidx.compose.material.internal/androidx_compose_material_internal_Icons$stableprop_getter|androidx_compose_material_internal_Icons$stableprop_getter(){}[0] +final fun androidx.compose.material.internal/androidx_compose_material_internal_Icons_Filled$stableprop_getter(): kotlin/Int // androidx.compose.material.internal/androidx_compose_material_internal_Icons_Filled$stableprop_getter|androidx_compose_material_internal_Icons_Filled$stableprop_getter(){}[0] +final fun androidx.compose.material.internal/androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.material.internal/androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_material_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop_getter|androidx_compose_material_pullrefresh_PullRefreshDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshState$stableprop_getter(): kotlin/Int // androidx.compose.material.pullrefresh/androidx_compose_material_pullrefresh_PullRefreshState$stableprop_getter|androidx_compose_material_pullrefresh_PullRefreshState$stableprop_getter(){}[0] +final fun androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.window/DialogProperties?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.window.DialogProperties?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.window/DialogProperties?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.window.DialogProperties?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BackdropScaffold(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material/BackdropScaffoldState?, kotlin/Function3<androidx.compose.material/SnackbarHostState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/BackdropScaffold|BackdropScaffold(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material.BackdropScaffoldState?;kotlin.Function3<androidx.compose.material.SnackbarHostState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material/BackdropScaffoldState(androidx.compose.material/BackdropValue, androidx.compose.ui.unit/Density, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Function1<androidx.compose.material/BackdropValue, kotlin/Boolean> = ..., androidx.compose.material/SnackbarHostState = ...): androidx.compose.material/BackdropScaffoldState // androidx.compose.material/BackdropScaffoldState|BackdropScaffoldState(androidx.compose.material.BackdropValue;androidx.compose.ui.unit.Density;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Function1<androidx.compose.material.BackdropValue,kotlin.Boolean>;androidx.compose.material.SnackbarHostState){}[0] -final fun androidx.compose.material/Badge(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? = ...) // androidx.compose.material/Badge|Badge(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>?){}[0] -final fun androidx.compose.material/BadgedBox(kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) // androidx.compose.material/BadgedBox|BadgedBox(kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/BottomAppBar|BottomAppBar(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomAppBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomDrawer(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material/BottomDrawerState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/BottomDrawer|BottomDrawer(kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material.BottomDrawerState;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomNavigation(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/BottomNavigation|BottomNavigation(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomNavigation(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/BottomNavigation|BottomNavigation(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/BottomSheetScaffold(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material/BottomSheetScaffoldState = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material/FabPosition = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) // androidx.compose.material/BottomSheetScaffold|BottomSheetScaffold(kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material.BottomSheetScaffoldState;kotlin.Function0<kotlin.Unit>?;kotlin.Function1<androidx.compose.material.SnackbarHostState,kotlin.Unit>;kotlin.Function0<kotlin.Unit>?;androidx.compose.material.FabPosition;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.PaddingValues,kotlin.Unit>){}[0] -final fun androidx.compose.material/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/ButtonElevation? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.material/ButtonColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/Card(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/Card|Card(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.BorderStroke?;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/CheckboxColors = ...) // androidx.compose.material/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.CheckboxColors){}[0] -final fun androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material/Divider(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/Divider|Divider(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/DropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/DpOffset = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.window/PopupProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material/DropdownMenu|DropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.unit.DpOffset;androidx.compose.foundation.ScrollState;androidx.compose.ui.window.PopupProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/DropdownMenuItem(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/DropdownMenuItem|DropdownMenuItem(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/ExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material/FloatingActionButtonElevation = ...) // androidx.compose.material/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material.FloatingActionButtonElevation){}[0] -final fun androidx.compose.material/FloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material/FloatingActionButtonElevation = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/FloatingActionButton|FloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material.FloatingActionButtonElevation;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/LeadingIconTab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/LeadingIconTab|LeadingIconTab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material/MaterialTheme(androidx.compose.material/Colors = ..., androidx.compose.material/Typography = ..., androidx.compose.material/Shapes = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/MaterialTheme|MaterialTheme(androidx.compose.material.Colors;androidx.compose.material.Typography;androidx.compose.material.Shapes;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/ModalBottomSheetLayout(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material/ModalBottomSheetState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/ModalBottomSheetLayout|ModalBottomSheetLayout(kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material.ModalBottomSheetState;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/ModalDrawer(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material/DrawerState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/ModalDrawer|ModalDrawer(kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material.DrawerState;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/NavigationRail(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material/NavigationRail|NavigationRail(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/NavigationRail(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material/NavigationRail|NavigationRail(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/NavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/NavigationRailItem|NavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/ButtonElevation? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.material/ButtonColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/OutlinedSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material/OutlinedSecureTextField|OutlinedSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material/OutlinedTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.foundation.text.input/TextFieldLineLimits = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/ProvideTextStyle(androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>) // androidx.compose.material/ProvideTextStyle|ProvideTextStyle(androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/RadioButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/RadioButtonColors = ...) // androidx.compose.material/RadioButton|RadioButton(kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.RadioButtonColors){}[0] -final fun androidx.compose.material/Scaffold(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., androidx.compose.material/ScaffoldState = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., androidx.compose.material/FabPosition = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) // androidx.compose.material/Scaffold|Scaffold(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;androidx.compose.material.ScaffoldState;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.material.SnackbarHostState,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.material.FabPosition;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.PaddingValues,kotlin.Unit>){}[0] -final fun androidx.compose.material/Scaffold(androidx.compose.ui/Modifier = ..., androidx.compose.material/ScaffoldState = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material/SnackbarHostState, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., androidx.compose.material/FabPosition = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) // androidx.compose.material/Scaffold|Scaffold(androidx.compose.ui.Modifier;androidx.compose.material.ScaffoldState;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.material.SnackbarHostState,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.material.FabPosition;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.PaddingValues,kotlin.Unit>){}[0] -final fun androidx.compose.material/ScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<kotlin.collections/List<androidx.compose.material/TabPosition>, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/ScrollableTabRow|ScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.collections.List<androidx.compose.material.TabPosition>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/SecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material/SecureTextField|SecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ..., kotlin/Int = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/SliderColors = ...) // androidx.compose.material/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.SliderColors){}[0] -final fun androidx.compose.material/Snackbar(androidx.compose.material/SnackbarData, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/Snackbar|Snackbar(androidx.compose.material.SnackbarData;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/Snackbar(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/Snackbar|Snackbar(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/SnackbarHost(androidx.compose.material/SnackbarHostState, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material/SnackbarData, kotlin/Unit> = ...) // androidx.compose.material/SnackbarHost|SnackbarHost(androidx.compose.material.SnackbarHostState;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material.SnackbarData,kotlin.Unit>){}[0] -final fun androidx.compose.material/Surface(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/Surface|Surface(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.BorderStroke?;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/Switch(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/SwitchColors = ...) // androidx.compose.material/Switch|Switch(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.SwitchColors){}[0] -final fun androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/TabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<kotlin.collections/List<androidx.compose.material/TabPosition>, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material/TabRow|TabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<kotlin.collections.List<androidx.compose.material.TabPosition>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material/Text|Text(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material/Text|Text(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/ButtonElevation? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.material/ButtonColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/TextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.foundation.text.input/TextFieldLineLimits = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material/TextField|TextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material/TextFieldColors = ...) // androidx.compose.material/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material.TextFieldColors){}[0] -final fun androidx.compose.material/TopAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/TopAppBar|TopAppBar(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/TopAppBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material/TopAppBar|TopAppBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/TopAppBar|TopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material/TopAppBar|TopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.material/CheckboxColors = ...) // androidx.compose.material/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.CheckboxColors){}[0] -final fun androidx.compose.material/contentColorFor(androidx.compose.ui.graphics/Color): androidx.compose.ui.graphics/Color // androidx.compose.material/contentColorFor|contentColorFor(androidx.compose.ui.graphics.Color){}[0] +final fun androidx.compose.material/Badge(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Badge|Badge(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BadgedBox(kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BadgedBox|BadgedBox(kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomAppBar|BottomAppBar(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomAppBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomDrawer(kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material/BottomDrawerState?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomDrawer|BottomDrawer(kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material.BottomDrawerState?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomNavigation(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomNavigation|BottomNavigation(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomNavigation(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomNavigation|BottomNavigation(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/BottomSheetScaffold(kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material/BottomSheetScaffoldState?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material/SnackbarHostState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material/FabPosition, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/PaddingValues, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/BottomSheetScaffold|BottomSheetScaffold(kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material.BottomSheetScaffoldState?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material.SnackbarHostState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material.FabPosition;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.PaddingValues,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape?, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape?;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Card(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation/BorderStroke?, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Card|Card(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.BorderStroke?;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/CheckboxColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.CheckboxColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/CircularProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Divider(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Divider|Divider(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/DropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/DpOffset, androidx.compose.foundation/ScrollState?, androidx.compose.ui.window/PopupProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/DropdownMenu|DropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.DpOffset;androidx.compose.foundation.ScrollState?;androidx.compose.ui.window.PopupProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/DropdownMenuItem(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/DropdownMenuItem|DropdownMenuItem(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/ExtendedFloatingActionButton(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material/FloatingActionButtonElevation?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material.FloatingActionButtonElevation?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/FloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material/FloatingActionButtonElevation?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/FloatingActionButton|FloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material.FloatingActionButtonElevation?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/LeadingIconTab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/LeadingIconTab|LeadingIconTab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/LinearProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/MaterialTheme(androidx.compose.material/Colors?, androidx.compose.material/Typography?, androidx.compose.material/Shapes?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/MaterialTheme|MaterialTheme(androidx.compose.material.Colors?;androidx.compose.material.Typography?;androidx.compose.material.Shapes?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/ModalBottomSheetLayout(kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material/ModalBottomSheetState?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/ModalBottomSheetLayout|ModalBottomSheetLayout(kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material.ModalBottomSheetState?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/ModalDrawer(kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material/DrawerState?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/ModalDrawer|ModalDrawer(kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material.DrawerState?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/NavigationRail(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/NavigationRail|NavigationRail(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/NavigationRail(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/NavigationRail|NavigationRail(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/NavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/NavigationRailItem|NavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape?, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape?;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedSecureTextField|OutlinedSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/ProvideTextStyle(androidx.compose.ui.text/TextStyle, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material/ProvideTextStyle|ProvideTextStyle(androidx.compose.ui.text.TextStyle;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.material/RadioButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/RadioButtonColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/RadioButton|RadioButton(kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.RadioButtonColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Scaffold(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, androidx.compose.material/ScaffoldState?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material/SnackbarHostState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material/FabPosition, kotlin/Boolean, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/PaddingValues, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Scaffold|Scaffold(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;androidx.compose.material.ScaffoldState?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material.SnackbarHostState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material.FabPosition;kotlin.Boolean;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.PaddingValues,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Scaffold(androidx.compose.ui/Modifier?, androidx.compose.material/ScaffoldState?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material/SnackbarHostState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material/FabPosition, kotlin/Boolean, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/PaddingValues, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Scaffold|Scaffold(androidx.compose.ui.Modifier?;androidx.compose.material.ScaffoldState?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material.SnackbarHostState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material.FabPosition;kotlin.Boolean;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.PaddingValues,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/ScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<kotlin.collections/List<androidx.compose.material/TabPosition>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/ScrollableTabRow|ScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<kotlin.collections.List<androidx.compose.material.TabPosition>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/SecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/SecureTextField|SecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, kotlin/Int, kotlin/Function0<kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/SliderColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.SliderColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Snackbar(androidx.compose.material/SnackbarData, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Snackbar|Snackbar(androidx.compose.material.SnackbarData;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Snackbar(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Snackbar|Snackbar(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/SnackbarHost(androidx.compose.material/SnackbarHostState, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material/SnackbarData, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/SnackbarHost|SnackbarHost(androidx.compose.material.SnackbarHostState;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material.SnackbarData,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Surface(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation/BorderStroke?, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Surface|Surface(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.BorderStroke?;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Switch(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/SwitchColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Switch|Switch(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.SwitchColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<kotlin.collections/List<androidx.compose.material/TabPosition>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TabRow|TabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<kotlin.collections.List<androidx.compose.material.TabPosition>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Text|Text(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/Text(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/Text|Text(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/ButtonElevation?, androidx.compose.ui.graphics/Shape?, androidx.compose.foundation/BorderStroke?, androidx.compose.material/ButtonColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.ButtonElevation?;androidx.compose.ui.graphics.Shape?;androidx.compose.foundation.BorderStroke?;androidx.compose.material.ButtonColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextField|TextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TopAppBar(androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TopAppBar|TopAppBar(androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TopAppBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TopAppBar|TopAppBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.foundation.layout/WindowInsets, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TopAppBar|TopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TopAppBar|TopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.material/CheckboxColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.material.CheckboxColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/androidx_compose_material_AnchoredDragFinishedSignal$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_AnchoredDragFinishedSignal$stableprop_getter|androidx_compose_material_AnchoredDragFinishedSignal$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_AnchoredDraggableDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_AnchoredDraggableDefaults$stableprop_getter|androidx_compose_material_AnchoredDraggableDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_AnchoredDraggableState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_AnchoredDraggableState$stableprop_getter|androidx_compose_material_AnchoredDraggableState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_AppBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_AppBarDefaults$stableprop_getter|androidx_compose_material_AppBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BackdropScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BackdropScaffoldDefaults$stableprop_getter|androidx_compose_material_BackdropScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BackdropScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BackdropScaffoldState$stableprop_getter|androidx_compose_material_BackdropScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BottomDrawerState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BottomDrawerState$stableprop_getter|androidx_compose_material_BottomDrawerState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BottomNavigationDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BottomNavigationDefaults$stableprop_getter|androidx_compose_material_BottomNavigationDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BottomSheetScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BottomSheetScaffoldDefaults$stableprop_getter|androidx_compose_material_BottomSheetScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BottomSheetScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BottomSheetScaffoldState$stableprop_getter|androidx_compose_material_BottomSheetScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_BottomSheetState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_BottomSheetState$stableprop_getter|androidx_compose_material_BottomSheetState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ButtonDefaults$stableprop_getter|androidx_compose_material_ButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_CheckboxDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_CheckboxDefaults$stableprop_getter|androidx_compose_material_CheckboxDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ChipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ChipDefaults$stableprop_getter|androidx_compose_material_ChipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_Colors$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_Colors$stableprop_getter|androidx_compose_material_Colors$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ContentAlpha$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ContentAlpha$stableprop_getter|androidx_compose_material_ContentAlpha$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_DismissState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_DismissState$stableprop_getter|androidx_compose_material_DismissState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_DraggableAnchorsConfig$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_DraggableAnchorsConfig$stableprop_getter|androidx_compose_material_DraggableAnchorsConfig$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_DrawerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_DrawerDefaults$stableprop_getter|androidx_compose_material_DrawerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_DrawerState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_DrawerState$stableprop_getter|androidx_compose_material_DrawerState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_DropdownMenuPositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_DropdownMenuPositionProvider$stableprop_getter|androidx_compose_material_DropdownMenuPositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop_getter|androidx_compose_material_ExposedDropdownMenuBoxScope$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ExposedDropdownMenuDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ExposedDropdownMenuDefaults$stableprop_getter|androidx_compose_material_ExposedDropdownMenuDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_FabPlacement$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_FabPlacement$stableprop_getter|androidx_compose_material_FabPlacement$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_FixedThreshold$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_FixedThreshold$stableprop_getter|androidx_compose_material_FixedThreshold$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_FloatingActionButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_FloatingActionButtonDefaults$stableprop_getter|androidx_compose_material_FloatingActionButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_FractionalThreshold$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_FractionalThreshold$stableprop_getter|androidx_compose_material_FractionalThreshold$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_InternalAtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_InternalAtomicReference$stableprop_getter|androidx_compose_material_InternalAtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_InternalMutatorMutex$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_InternalMutatorMutex$stableprop_getter|androidx_compose_material_InternalMutatorMutex$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_MaterialTheme$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_MaterialTheme$stableprop_getter|androidx_compose_material_MaterialTheme$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_MenuDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_MenuDefaults$stableprop_getter|androidx_compose_material_MenuDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_MinimumInteractiveModifier$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_MinimumInteractiveModifier$stableprop_getter|androidx_compose_material_MinimumInteractiveModifier$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_MinimumInteractiveModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_MinimumInteractiveModifierNode$stableprop_getter|androidx_compose_material_MinimumInteractiveModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ModalBottomSheetDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ModalBottomSheetDefaults$stableprop_getter|androidx_compose_material_ModalBottomSheetDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ModalBottomSheetState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ModalBottomSheetState$stableprop_getter|androidx_compose_material_ModalBottomSheetState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_MutableWindowInsets$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_MutableWindowInsets$stableprop_getter|androidx_compose_material_MutableWindowInsets$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_NavigationRailDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_NavigationRailDefaults$stableprop_getter|androidx_compose_material_NavigationRailDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ProgressIndicatorDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ProgressIndicatorDefaults$stableprop_getter|androidx_compose_material_ProgressIndicatorDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_RadioButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_RadioButtonDefaults$stableprop_getter|androidx_compose_material_RadioButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ResistanceConfig$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ResistanceConfig$stableprop_getter|androidx_compose_material_ResistanceConfig$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_RippleConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_RippleConfiguration$stableprop_getter|androidx_compose_material_RippleConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_RippleDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_RippleDefaults$stableprop_getter|androidx_compose_material_RippleDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ScaffoldDefaults$stableprop_getter|androidx_compose_material_ScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_ScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_ScaffoldState$stableprop_getter|androidx_compose_material_ScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_Shapes$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_Shapes$stableprop_getter|androidx_compose_material_Shapes$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SliderDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SliderDefaults$stableprop_getter|androidx_compose_material_SliderDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SnackbarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SnackbarDefaults$stableprop_getter|androidx_compose_material_SnackbarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SnackbarHostState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SnackbarHostState$stableprop_getter|androidx_compose_material_SnackbarHostState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SwipeProgress$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SwipeProgress$stableprop_getter|androidx_compose_material_SwipeProgress$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SwipeableDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SwipeableDefaults$stableprop_getter|androidx_compose_material_SwipeableDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SwipeableState$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SwipeableState$stableprop_getter|androidx_compose_material_SwipeableState$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_SwitchDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_SwitchDefaults$stableprop_getter|androidx_compose_material_SwitchDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_TabPosition$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_TabPosition$stableprop_getter|androidx_compose_material_TabPosition$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_TabRowDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_TabRowDefaults$stableprop_getter|androidx_compose_material_TabRowDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_TextFieldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_TextFieldDefaults$stableprop_getter|androidx_compose_material_TextFieldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_Typography$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_Typography$stableprop_getter|androidx_compose_material_Typography$stableprop_getter(){}[0] +final fun androidx.compose.material/androidx_compose_material_WindowBoundsCalculator$stableprop_getter(): kotlin/Int // androidx.compose.material/androidx_compose_material_WindowBoundsCalculator$stableprop_getter|androidx_compose_material_WindowBoundsCalculator$stableprop_getter(){}[0] +final fun androidx.compose.material/contentColorFor(androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material/contentColorFor|contentColorFor(androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.material/darkColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/Colors // androidx.compose.material/darkColors|darkColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] final fun androidx.compose.material/lightColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material/Colors // androidx.compose.material/lightColors|lightColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material/rememberBackdropScaffoldState(androidx.compose.material/BackdropValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Function1<androidx.compose.material/BackdropValue, kotlin/Boolean> = ..., androidx.compose.material/SnackbarHostState = ...): androidx.compose.material/BackdropScaffoldState // androidx.compose.material/rememberBackdropScaffoldState|rememberBackdropScaffoldState(androidx.compose.material.BackdropValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Function1<androidx.compose.material.BackdropValue,kotlin.Boolean>;androidx.compose.material.SnackbarHostState){}[0] -final fun androidx.compose.material/rememberBottomDrawerState(androidx.compose.material/BottomDrawerValue, kotlin/Function1<androidx.compose.material/BottomDrawerValue, kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ...): androidx.compose.material/BottomDrawerState // androidx.compose.material/rememberBottomDrawerState|rememberBottomDrawerState(androidx.compose.material.BottomDrawerValue;kotlin.Function1<androidx.compose.material.BottomDrawerValue,kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){}[0] -final fun androidx.compose.material/rememberBottomSheetScaffoldState(androidx.compose.material/BottomSheetState = ..., androidx.compose.material/SnackbarHostState = ...): androidx.compose.material/BottomSheetScaffoldState // androidx.compose.material/rememberBottomSheetScaffoldState|rememberBottomSheetScaffoldState(androidx.compose.material.BottomSheetState;androidx.compose.material.SnackbarHostState){}[0] -final fun androidx.compose.material/rememberBottomSheetState(androidx.compose.material/BottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Function1<androidx.compose.material/BottomSheetValue, kotlin/Boolean> = ...): androidx.compose.material/BottomSheetState // androidx.compose.material/rememberBottomSheetState|rememberBottomSheetState(androidx.compose.material.BottomSheetValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Function1<androidx.compose.material.BottomSheetValue,kotlin.Boolean>){}[0] -final fun androidx.compose.material/rememberDrawerState(androidx.compose.material/DrawerValue, kotlin/Function1<androidx.compose.material/DrawerValue, kotlin/Boolean> = ...): androidx.compose.material/DrawerState // androidx.compose.material/rememberDrawerState|rememberDrawerState(androidx.compose.material.DrawerValue;kotlin.Function1<androidx.compose.material.DrawerValue,kotlin.Boolean>){}[0] -final fun androidx.compose.material/rememberModalBottomSheetState(androidx.compose.material/ModalBottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., kotlin/Function1<androidx.compose.material/ModalBottomSheetValue, kotlin/Boolean> = ..., kotlin/Boolean = ...): androidx.compose.material/ModalBottomSheetState // androidx.compose.material/rememberModalBottomSheetState|rememberModalBottomSheetState(androidx.compose.material.ModalBottomSheetValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;kotlin.Function1<androidx.compose.material.ModalBottomSheetValue,kotlin.Boolean>;kotlin.Boolean){}[0] -final fun androidx.compose.material/rememberScaffoldState(androidx.compose.material/DrawerState = ..., androidx.compose.material/SnackbarHostState = ...): androidx.compose.material/ScaffoldState // androidx.compose.material/rememberScaffoldState|rememberScaffoldState(androidx.compose.material.DrawerState;androidx.compose.material.SnackbarHostState){}[0] +final fun androidx.compose.material/rememberBackdropScaffoldState(androidx.compose.material/BackdropValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Function1<androidx.compose.material/BackdropValue, kotlin/Boolean>?, androidx.compose.material/SnackbarHostState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/BackdropScaffoldState // androidx.compose.material/rememberBackdropScaffoldState|rememberBackdropScaffoldState(androidx.compose.material.BackdropValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Function1<androidx.compose.material.BackdropValue,kotlin.Boolean>?;androidx.compose.material.SnackbarHostState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberBottomDrawerState(androidx.compose.material/BottomDrawerValue, kotlin/Function1<androidx.compose.material/BottomDrawerValue, kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/BottomDrawerState // androidx.compose.material/rememberBottomDrawerState|rememberBottomDrawerState(androidx.compose.material.BottomDrawerValue;kotlin.Function1<androidx.compose.material.BottomDrawerValue,kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberBottomSheetScaffoldState(androidx.compose.material/BottomSheetState?, androidx.compose.material/SnackbarHostState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/BottomSheetScaffoldState // androidx.compose.material/rememberBottomSheetScaffoldState|rememberBottomSheetScaffoldState(androidx.compose.material.BottomSheetState?;androidx.compose.material.SnackbarHostState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberBottomSheetState(androidx.compose.material/BottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Function1<androidx.compose.material/BottomSheetValue, kotlin/Boolean>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/BottomSheetState // androidx.compose.material/rememberBottomSheetState|rememberBottomSheetState(androidx.compose.material.BottomSheetValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Function1<androidx.compose.material.BottomSheetValue,kotlin.Boolean>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberDrawerState(androidx.compose.material/DrawerValue, kotlin/Function1<androidx.compose.material/DrawerValue, kotlin/Boolean>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/DrawerState // androidx.compose.material/rememberDrawerState|rememberDrawerState(androidx.compose.material.DrawerValue;kotlin.Function1<androidx.compose.material.DrawerValue,kotlin.Boolean>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberModalBottomSheetState(androidx.compose.material/ModalBottomSheetValue, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, kotlin/Function1<androidx.compose.material/ModalBottomSheetValue, kotlin/Boolean>?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ModalBottomSheetState // androidx.compose.material/rememberModalBottomSheetState|rememberModalBottomSheetState(androidx.compose.material.ModalBottomSheetValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;kotlin.Function1<androidx.compose.material.ModalBottomSheetValue,kotlin.Boolean>?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material/rememberScaffoldState(androidx.compose.material/DrawerState?, androidx.compose.material/SnackbarHostState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material/ScaffoldState // androidx.compose.material/rememberScaffoldState|rememberScaffoldState(androidx.compose.material.DrawerState?;androidx.compose.material.SnackbarHostState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material/ripple(androidx.compose.ui.graphics/ColorProducer, kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/IndicationNodeFactory // androidx.compose.material/ripple|ripple(androidx.compose.ui.graphics.ColorProducer;kotlin.Boolean;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.material/ripple(kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.foundation/IndicationNodeFactory // androidx.compose.material/ripple|ripple(kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0]
diff --git a/compose/material3/adaptive/adaptive-layout/bcv/native/current.txt b/compose/material3/adaptive/adaptive-layout/bcv/native/current.txt index 4654bf5..fca3b0d 100644 --- a/compose/material3/adaptive/adaptive-layout/bcv/native/current.txt +++ b/compose/material3/adaptive/adaptive-layout/bcv/native/current.txt
@@ -32,11 +32,11 @@ } abstract interface androidx.compose.material3.adaptive.layout/AnimatedPaneOverride { // androidx.compose.material3.adaptive.layout/AnimatedPaneOverride|null[0] - abstract fun <#A1: kotlin/Any?, #B1: androidx.compose.material3.adaptive.layout/PaneScaffoldValue<#A1>> (androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope<#A1, #B1>).AnimatedPane() // androidx.compose.material3.adaptive.layout/AnimatedPaneOverride.AnimatedPane|AnimatedPane@androidx.compose.material3.adaptive.layout.AnimatedPaneOverrideScope<0:0,0:1>(){0§<kotlin.Any?>;1§<androidx.compose.material3.adaptive.layout.PaneScaffoldValue<0:0>>}[0] + abstract fun <#A1: kotlin/Any?, #B1: androidx.compose.material3.adaptive.layout/PaneScaffoldValue<#A1>> (androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope<#A1, #B1>).AnimatedPane(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3.adaptive.layout/AnimatedPaneOverride.AnimatedPane|AnimatedPane@androidx.compose.material3.adaptive.layout.AnimatedPaneOverrideScope<0:0,0:1>(androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.material3.adaptive.layout.PaneScaffoldValue<0:0>>}[0] } abstract interface androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverride { // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverride|null[0] - abstract fun (androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope).ThreePaneScaffold() // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverride.ThreePaneScaffold|ThreePaneScaffold@androidx.compose.material3.adaptive.layout.ThreePaneScaffoldOverrideScope(){}[0] + abstract fun (androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope).ThreePaneScaffold(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverride.ThreePaneScaffold|ThreePaneScaffold@androidx.compose.material3.adaptive.layout.ThreePaneScaffoldOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } sealed interface <#A: kotlin/Any?, #B: androidx.compose.material3.adaptive.layout/PaneScaffoldValue<#A>> androidx.compose.material3.adaptive.layout/ExtendedPaneScaffoldPaneScope : androidx.compose.material3.adaptive.layout/ExtendedPaneScaffoldScope<#A, #B>, androidx.compose.material3.adaptive.layout/PaneScaffoldPaneScope<#A> // androidx.compose.material3.adaptive.layout/ExtendedPaneScaffoldPaneScope|null[0] @@ -267,7 +267,7 @@ final val boundsAnimationSpec // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.boundsAnimationSpec|{}boundsAnimationSpec[0] final fun <get-boundsAnimationSpec>(): androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntRect> // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.boundsAnimationSpec.<get-boundsAnimationSpec>|<get-boundsAnimationSpec>(){}[0] final val content // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function1<androidx.compose.material3.adaptive.layout/AnimatedPaneScope, kotlin/Unit> // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<androidx.compose.material3.adaptive.layout/AnimatedPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.content.<get-content>|<get-content>(){}[0] final val enterTransition // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.enterTransition|{}enterTransition[0] final fun <get-enterTransition>(): androidx.compose.animation/EnterTransition // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.enterTransition.<get-enterTransition>|<get-enterTransition>(){}[0] final val exitTransition // androidx.compose.material3.adaptive.layout/AnimatedPaneOverrideScope.exitTransition|{}exitTransition[0] @@ -419,21 +419,21 @@ final val modifier // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val paneExpansionDragHandle // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneExpansionDragHandle|{}paneExpansionDragHandle[0] - final fun <get-paneExpansionDragHandle>(): kotlin/Function1<androidx.compose.material3.adaptive.layout/PaneExpansionState, kotlin/Unit>? // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneExpansionDragHandle.<get-paneExpansionDragHandle>|<get-paneExpansionDragHandle>(){}[0] + final fun <get-paneExpansionDragHandle>(): kotlin/Function3<androidx.compose.material3.adaptive.layout/PaneExpansionState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneExpansionDragHandle.<get-paneExpansionDragHandle>|<get-paneExpansionDragHandle>(){}[0] final val paneExpansionState // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneExpansionState|{}paneExpansionState[0] final fun <get-paneExpansionState>(): androidx.compose.material3.adaptive.layout/PaneExpansionState // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneExpansionState.<get-paneExpansionState>|<get-paneExpansionState>(){}[0] final val paneOrder // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneOrder|{}paneOrder[0] final fun <get-paneOrder>(): androidx.compose.material3.adaptive.layout/ThreePaneScaffoldHorizontalOrder // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.paneOrder.<get-paneOrder>|<get-paneOrder>(){}[0] final val primaryPane // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.primaryPane|{}primaryPane[0] - final fun <get-primaryPane>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.primaryPane.<get-primaryPane>|<get-primaryPane>(){}[0] + final fun <get-primaryPane>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.primaryPane.<get-primaryPane>|<get-primaryPane>(){}[0] final val scaffoldDirective // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.scaffoldDirective|{}scaffoldDirective[0] final fun <get-scaffoldDirective>(): androidx.compose.material3.adaptive.layout/PaneScaffoldDirective // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.scaffoldDirective.<get-scaffoldDirective>|<get-scaffoldDirective>(){}[0] final val scaffoldState // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.scaffoldState|{}scaffoldState[0] final fun <get-scaffoldState>(): androidx.compose.material3.adaptive.layout/ThreePaneScaffoldState // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.scaffoldState.<get-scaffoldState>|<get-scaffoldState>(){}[0] final val secondaryPane // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.secondaryPane|{}secondaryPane[0] - final fun <get-secondaryPane>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.secondaryPane.<get-secondaryPane>|<get-secondaryPane>(){}[0] + final fun <get-secondaryPane>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.secondaryPane.<get-secondaryPane>|<get-secondaryPane>(){}[0] final val tertiaryPane // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.tertiaryPane|{}tertiaryPane[0] - final fun <get-tertiaryPane>(): kotlin/Function0<kotlin/Unit>? // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.tertiaryPane.<get-tertiaryPane>|<get-tertiaryPane>(){}[0] + final fun <get-tertiaryPane>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverrideScope.tertiaryPane.<get-tertiaryPane>|<get-tertiaryPane>(){}[0] } final class androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue : androidx.compose.material3.adaptive.layout/PaneExpansionStateKeyProvider, androidx.compose.material3.adaptive.layout/PaneScaffoldValue<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldRole> { // androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue|null[0] @@ -473,7 +473,7 @@ sealed class androidx.compose.material3.adaptive.layout/PaneExpansionAnchor { // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor|null[0] abstract val description // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.description|{}description[0] - abstract fun <get-description>(): kotlin/String // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.description.<get-description>|<get-description>(){}[0] + abstract fun <get-description>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/String // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.description.<get-description>|<get-description>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] abstract class Offset : androidx.compose.material3.adaptive.layout/PaneExpansionAnchor { // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Offset|null[0] final val direction // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Offset.direction|{}direction[0] @@ -507,7 +507,7 @@ constructor <init>(kotlin/Float) // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.<init>|<init>(kotlin.Float){}[0] final val description // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.description|{}description[0] - final fun <get-description>(): kotlin/String // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.description.<get-description>|<get-description>(){}[0] + final fun <get-description>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/String // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.description.<get-description>|<get-description>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val proportion // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.proportion|{}proportion[0] final fun <get-proportion>(): kotlin/Float // androidx.compose.material3.adaptive.layout/PaneExpansionAnchor.Proportion.proportion.<get-proportion>|<get-proportion>(){}[0] @@ -574,21 +574,123 @@ final fun <get-LocalAnimatedPaneOverride>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material3.adaptive.layout/AnimatedPaneOverride> // androidx.compose.material3.adaptive.layout/LocalAnimatedPaneOverride.<get-LocalAnimatedPaneOverride>|<get-LocalAnimatedPaneOverride>(){}[0] final val androidx.compose.material3.adaptive.layout/LocalThreePaneScaffoldOverride // androidx.compose.material3.adaptive.layout/LocalThreePaneScaffoldOverride|{}LocalThreePaneScaffoldOverride[0] final fun <get-LocalThreePaneScaffoldOverride>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldOverride> // androidx.compose.material3.adaptive.layout/LocalThreePaneScaffoldOverride.<get-LocalThreePaneScaffoldOverride>|<get-LocalThreePaneScaffoldOverride>(){}[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop|#static{}androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop|#static{}androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop|#static{}androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop|#static{}androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Bounds$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Bounds$stableprop|#static{}androidx_compose_material3_adaptive_layout_Bounds$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop|#static{}androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop|#static{}androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop|#static{}androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop|#static{}androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop|#static{}androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop|#static{}androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop|#static{}androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop|#static{}androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop|#static{}androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop|#static{}androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Scrim$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Scrim$stableprop|#static{}androidx_compose_material3_adaptive_layout_Scrim$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop|#static{}androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop|#static{}androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop|#static{}androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop|#static{}androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop[0] +final val androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop|#static{}androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop[0] -final fun (androidx.compose.material3.adaptive.layout/PaneExpansionState).androidx.compose.material3.adaptive.layout/defaultDragHandleSemantics(): kotlin/Function1<androidx.compose.ui.semantics/SemanticsPropertyReceiver, kotlin/Unit> // androidx.compose.material3.adaptive.layout/defaultDragHandleSemantics|defaultDragHandleSemantics@androidx.compose.material3.adaptive.layout.PaneExpansionState(){}[0] -final fun <#A: kotlin/Any?, #B: androidx.compose.material3.adaptive.layout/PaneScaffoldValue<#A>> (androidx.compose.material3.adaptive.layout/ExtendedPaneScaffoldPaneScope<#A, #B>).androidx.compose.material3.adaptive.layout/AnimatedPane(androidx.compose.ui/Modifier = ..., androidx.compose.animation/EnterTransition = ..., androidx.compose.animation/ExitTransition = ..., androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntRect> = ..., kotlin/Function1<androidx.compose.material3.adaptive.layout/AnimatedPaneScope, kotlin/Unit>) // androidx.compose.material3.adaptive.layout/AnimatedPane|AnimatedPane@androidx.compose.material3.adaptive.layout.ExtendedPaneScaffoldPaneScope<0:0,0:1>(androidx.compose.ui.Modifier;androidx.compose.animation.EnterTransition;androidx.compose.animation.ExitTransition;androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntRect>;kotlin.Function1<androidx.compose.material3.adaptive.layout.AnimatedPaneScope,kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.material3.adaptive.layout.PaneScaffoldValue<0:0>>}[0] +final fun (androidx.compose.material3.adaptive.layout/PaneExpansionState).androidx.compose.material3.adaptive.layout/defaultDragHandleSemantics(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Function1<androidx.compose.ui.semantics/SemanticsPropertyReceiver, kotlin/Unit> // androidx.compose.material3.adaptive.layout/defaultDragHandleSemantics|defaultDragHandleSemantics@androidx.compose.material3.adaptive.layout.PaneExpansionState(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun <#A: kotlin/Any?, #B: androidx.compose.material3.adaptive.layout/PaneScaffoldValue<#A>> (androidx.compose.material3.adaptive.layout/ExtendedPaneScaffoldPaneScope<#A, #B>).androidx.compose.material3.adaptive.layout/AnimatedPane(androidx.compose.ui/Modifier?, androidx.compose.animation/EnterTransition?, androidx.compose.animation/ExitTransition?, androidx.compose.animation.core/FiniteAnimationSpec<androidx.compose.ui.unit/IntRect>?, kotlin/Function3<androidx.compose.material3.adaptive.layout/AnimatedPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.adaptive.layout/AnimatedPane|AnimatedPane@androidx.compose.material3.adaptive.layout.ExtendedPaneScaffoldPaneScope<0:0,0:1>(androidx.compose.ui.Modifier?;androidx.compose.animation.EnterTransition?;androidx.compose.animation.ExitTransition?;androidx.compose.animation.core.FiniteAnimationSpec<androidx.compose.ui.unit.IntRect>?;kotlin.Function3<androidx.compose.material3.adaptive.layout.AnimatedPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.material3.adaptive.layout.PaneScaffoldValue<0:0>>}[0] final fun <#A: kotlin/Any?> (androidx.compose.material3.adaptive.layout/PaneScaffoldMotionDataProvider<#A>).androidx.compose.material3.adaptive.layout/calculateDefaultEnterTransition(#A): androidx.compose.animation/EnterTransition // androidx.compose.material3.adaptive.layout/calculateDefaultEnterTransition|calculateDefaultEnterTransition@androidx.compose.material3.adaptive.layout.PaneScaffoldMotionDataProvider<0:0>(0:0){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> (androidx.compose.material3.adaptive.layout/PaneScaffoldMotionDataProvider<#A>).androidx.compose.material3.adaptive.layout/calculateDefaultExitTransition(#A): androidx.compose.animation/ExitTransition // androidx.compose.material3.adaptive.layout/calculateDefaultExitTransition|calculateDefaultExitTransition@androidx.compose.material3.adaptive.layout.PaneScaffoldMotionDataProvider<0:0>(0:0){0§<kotlin.Any?>}[0] -final fun androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldState, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>? = ..., kotlin/Function2<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, kotlin/Unit>? = ..., androidx.compose.material3.adaptive.layout/PaneExpansionState? = ...) // androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold|ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldState;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>?;kotlin.Function2<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?){}[0] -final fun androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>? = ..., kotlin/Function2<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, kotlin/Unit>? = ..., androidx.compose.material3.adaptive.layout/PaneExpansionState? = ...) // androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold|ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldValue;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>?;kotlin.Function2<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?){}[0] -final fun androidx.compose.material3.adaptive.layout/SupportingPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldState, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>? = ..., kotlin/Function2<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, kotlin/Unit>? = ..., androidx.compose.material3.adaptive.layout/PaneExpansionState? = ...) // androidx.compose.material3.adaptive.layout/SupportingPaneScaffold|SupportingPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldState;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>?;kotlin.Function2<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?){}[0] -final fun androidx.compose.material3.adaptive.layout/SupportingPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, kotlin/Unit>? = ..., kotlin/Function2<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, kotlin/Unit>? = ..., androidx.compose.material3.adaptive.layout/PaneExpansionState? = ...) // androidx.compose.material3.adaptive.layout/SupportingPaneScaffold|SupportingPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldValue;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,kotlin.Unit>?;kotlin.Function2<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?){}[0] +final fun androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldState, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function4<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3.adaptive.layout/PaneExpansionState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold|ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldState;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function4<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function4<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3.adaptive.layout/PaneExpansionState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.adaptive.layout/ListDetailPaneScaffold|ListDetailPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldValue;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function4<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/SupportingPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldState, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function4<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3.adaptive.layout/PaneExpansionState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.adaptive.layout/SupportingPaneScaffold|SupportingPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldState;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function4<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/SupportingPaneScaffold(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldPaneScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function4<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldScope, androidx.compose.material3.adaptive.layout/PaneExpansionState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3.adaptive.layout/PaneExpansionState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.adaptive.layout/SupportingPaneScaffold|SupportingPaneScaffold(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldValue;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldPaneScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function4<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldScope,androidx.compose.material3.adaptive.layout.PaneExpansionState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.adaptive.layout.PaneExpansionState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop_getter|androidx_compose_material3_adaptive_layout_AdaptStrategy_Levitate$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop_getter|androidx_compose_material3_adaptive_layout_AdaptStrategy_Reflow$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop_getter|androidx_compose_material3_adaptive_layout_AnimatedPaneDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop_getter|androidx_compose_material3_adaptive_layout_AnimatedPaneOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Bounds$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Bounds$stableprop_getter|androidx_compose_material3_adaptive_layout_Bounds$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop_getter|androidx_compose_material3_adaptive_layout_DelayedSpringSpec$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop_getter|androidx_compose_material3_adaptive_layout_DerivedOffsetAnimationSpec$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop_getter|androidx_compose_material3_adaptive_layout_DerivedSizeAnimationSpec$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop_getter|androidx_compose_material3_adaptive_layout_DpHeightSizeClasses$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop_getter|androidx_compose_material3_adaptive_layout_DpWidthSizeClasses$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Bottom$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Horizontal$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Left$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Right$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Top$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop_getter|androidx_compose_material3_adaptive_layout_DragToResizeState_Vertical$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop_getter|androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop_getter|androidx_compose_material3_adaptive_layout_ListDetailPaneScaffoldRole$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop_getter|androidx_compose_material3_adaptive_layout_MutableThreePaneScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Levitated$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneAdaptedValue_Reflowed$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneExpansionAnchor$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Offset$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneExpansionAnchor_Proportion$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneExpansionState$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneExpansionStateData$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneMarginsImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneMotionData$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneMotionDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneScaffoldDirective$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneScaffoldParentDataImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_PaneScaffoldScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop_getter|androidx_compose_material3_adaptive_layout_PredictiveBackScaleState$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Scrim$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_Scrim$stableprop_getter|androidx_compose_material3_adaptive_layout_Scrim$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop_getter|androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop_getter|androidx_compose_material3_adaptive_layout_SupportingPaneScaffoldRole$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneMotion$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldAdaptStrategies$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldDestinationItem$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldHorizontalOrder$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldMotionDataProvider$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldPaneScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldTransitionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop_getter|androidx_compose_material3_adaptive_layout_ThreePaneScaffoldValue$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop_getter|androidx_compose_material3_adaptive_layout_TwoPaneExpansionStateKeyImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.layout/androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop_getter|androidx_compose_material3_adaptive_layout_WindowInsetsRulers$stableprop_getter(){}[0] final fun androidx.compose.material3.adaptive.layout/calculatePaneScaffoldDirective(androidx.compose.material3.adaptive/WindowAdaptiveInfo, androidx.compose.material3.adaptive.layout/HingePolicy = ...): androidx.compose.material3.adaptive.layout/PaneScaffoldDirective // androidx.compose.material3.adaptive.layout/calculatePaneScaffoldDirective|calculatePaneScaffoldDirective(androidx.compose.material3.adaptive.WindowAdaptiveInfo;androidx.compose.material3.adaptive.layout.HingePolicy){}[0] final fun androidx.compose.material3.adaptive.layout/calculatePaneScaffoldDirectiveWithTwoPanesOnMediumWidth(androidx.compose.material3.adaptive/WindowAdaptiveInfo, androidx.compose.material3.adaptive.layout/HingePolicy = ...): androidx.compose.material3.adaptive.layout/PaneScaffoldDirective // androidx.compose.material3.adaptive.layout/calculatePaneScaffoldDirectiveWithTwoPanesOnMediumWidth|calculatePaneScaffoldDirectiveWithTwoPanesOnMediumWidth(androidx.compose.material3.adaptive.WindowAdaptiveInfo;androidx.compose.material3.adaptive.layout.HingePolicy){}[0] final fun androidx.compose.material3.adaptive.layout/calculateThreePaneScaffoldValue(kotlin/Int, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<*>?, kotlin/Int = ...): androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue // androidx.compose.material3.adaptive.layout/calculateThreePaneScaffoldValue|calculateThreePaneScaffoldValue(kotlin.Int;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<*>?;kotlin.Int){}[0] final fun androidx.compose.material3.adaptive.layout/calculateThreePaneScaffoldValue(kotlin/Int, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies, kotlin.collections/List<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<*>>, kotlin/Int = ...): androidx.compose.material3.adaptive.layout/ThreePaneScaffoldValue // androidx.compose.material3.adaptive.layout/calculateThreePaneScaffoldValue|calculateThreePaneScaffoldValue(kotlin.Int;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;kotlin.collections.List<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<*>>;kotlin.Int){}[0] -final fun androidx.compose.material3.adaptive.layout/rememberDragToResizeState(androidx.compose.material3.adaptive.layout/DockedEdge, androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3.adaptive.layout/DragToResizeState // androidx.compose.material3.adaptive.layout/rememberDragToResizeState|rememberDragToResizeState(androidx.compose.material3.adaptive.layout.DockedEdge;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3.adaptive.layout/rememberPaneExpansionState(androidx.compose.material3.adaptive.layout/PaneExpansionStateKey = ..., kotlin.collections/List<androidx.compose.material3.adaptive.layout/PaneExpansionAnchor> = ..., kotlin/Int = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., androidx.compose.foundation.gestures/FlingBehavior = ...): androidx.compose.material3.adaptive.layout/PaneExpansionState // androidx.compose.material3.adaptive.layout/rememberPaneExpansionState|rememberPaneExpansionState(androidx.compose.material3.adaptive.layout.PaneExpansionStateKey;kotlin.collections.List<androidx.compose.material3.adaptive.layout.PaneExpansionAnchor>;kotlin.Int;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;androidx.compose.foundation.gestures.FlingBehavior){}[0] -final fun androidx.compose.material3.adaptive.layout/rememberPaneExpansionState(androidx.compose.material3.adaptive.layout/PaneExpansionStateKeyProvider, kotlin.collections/List<androidx.compose.material3.adaptive.layout/PaneExpansionAnchor> = ..., kotlin/Int = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., androidx.compose.foundation.gestures/FlingBehavior = ...): androidx.compose.material3.adaptive.layout/PaneExpansionState // androidx.compose.material3.adaptive.layout/rememberPaneExpansionState|rememberPaneExpansionState(androidx.compose.material3.adaptive.layout.PaneExpansionStateKeyProvider;kotlin.collections.List<androidx.compose.material3.adaptive.layout.PaneExpansionAnchor>;kotlin.Int;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;androidx.compose.foundation.gestures.FlingBehavior){}[0] +final fun androidx.compose.material3.adaptive.layout/rememberDragToResizeState(androidx.compose.material3.adaptive.layout/DockedEdge, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.layout/DragToResizeState // androidx.compose.material3.adaptive.layout/rememberDragToResizeState|rememberDragToResizeState(androidx.compose.material3.adaptive.layout.DockedEdge;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/rememberPaneExpansionState(androidx.compose.material3.adaptive.layout/PaneExpansionStateKey?, kotlin.collections/List<androidx.compose.material3.adaptive.layout/PaneExpansionAnchor>?, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, androidx.compose.foundation.gestures/FlingBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.layout/PaneExpansionState // androidx.compose.material3.adaptive.layout/rememberPaneExpansionState|rememberPaneExpansionState(androidx.compose.material3.adaptive.layout.PaneExpansionStateKey?;kotlin.collections.List<androidx.compose.material3.adaptive.layout.PaneExpansionAnchor>?;kotlin.Int;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;androidx.compose.foundation.gestures.FlingBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.layout/rememberPaneExpansionState(androidx.compose.material3.adaptive.layout/PaneExpansionStateKeyProvider, kotlin.collections/List<androidx.compose.material3.adaptive.layout/PaneExpansionAnchor>?, kotlin/Int, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, androidx.compose.foundation.gestures/FlingBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.layout/PaneExpansionState // androidx.compose.material3.adaptive.layout/rememberPaneExpansionState|rememberPaneExpansionState(androidx.compose.material3.adaptive.layout.PaneExpansionStateKeyProvider;kotlin.collections.List<androidx.compose.material3.adaptive.layout.PaneExpansionAnchor>?;kotlin.Int;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;androidx.compose.foundation.gestures.FlingBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.material3.adaptive.layout/PaneScaffoldMotionDataProvider<#A>).androidx.compose.material3.adaptive.layout/forEach(kotlin/Function2<#A, androidx.compose.material3.adaptive.layout/PaneMotionData, kotlin/Unit>) // androidx.compose.material3.adaptive.layout/forEach|forEach@androidx.compose.material3.adaptive.layout.PaneScaffoldMotionDataProvider<0:0>(kotlin.Function2<0:0,androidx.compose.material3.adaptive.layout.PaneMotionData,kotlin.Unit>){0§<kotlin.Any?>}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.material3.adaptive.layout/PaneScaffoldMotionDataProvider<#A>).androidx.compose.material3.adaptive.layout/forEachReversed(kotlin/Function2<#A, androidx.compose.material3.adaptive.layout/PaneMotionData, kotlin/Unit>) // androidx.compose.material3.adaptive.layout/forEachReversed|forEachReversed@androidx.compose.material3.adaptive.layout.PaneScaffoldMotionDataProvider<0:0>(kotlin.Function2<0:0,androidx.compose.material3.adaptive.layout.PaneMotionData,kotlin.Unit>){0§<kotlin.Any?>}[0]
diff --git a/compose/material3/adaptive/adaptive-navigation/bcv/native/current.txt b/compose/material3/adaptive/adaptive-navigation/bcv/native/current.txt index 6d00c7f..34702bd 100644 --- a/compose/material3/adaptive/adaptive-navigation/bcv/native/current.txt +++ b/compose/material3/adaptive/adaptive-navigation/bcv/native/current.txt
@@ -44,7 +44,10 @@ } } -final fun <#A: kotlin/Any?> androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective = ..., androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies = ..., kotlin/Boolean = ..., kotlin.collections/List<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<#A>> = ...): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<#A> // androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator|rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;kotlin.Boolean;kotlin.collections.List<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<0:0>>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective = ..., androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies = ..., kotlin/Boolean = ..., kotlin.collections/List<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<#A>> = ...): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<#A> // androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator|rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;kotlin.Boolean;kotlin.collections.List<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<0:0>>){0§<kotlin.Any?>}[0] -final fun androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective = ..., androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies = ..., kotlin/Boolean = ...): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<kotlin/Any> // androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator|rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;kotlin.Boolean){}[0] -final fun androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective = ..., androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies = ..., kotlin/Boolean = ...): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<kotlin/Any> // androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator|rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies;kotlin.Boolean){}[0] +final val androidx.compose.material3.adaptive.navigation/androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop // androidx.compose.material3.adaptive.navigation/androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop|#static{}androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop[0] + +final fun <#A: kotlin/Any?> androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective?, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies?, kotlin/Boolean, kotlin.collections/List<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<#A>>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<#A> // androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator|rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective?;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies?;kotlin.Boolean;kotlin.collections.List<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<0:0>>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective?, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies?, kotlin/Boolean, kotlin.collections/List<androidx.compose.material3.adaptive.layout/ThreePaneScaffoldDestinationItem<#A>>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<#A> // androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator|rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective?;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies?;kotlin.Boolean;kotlin.collections.List<androidx.compose.material3.adaptive.layout.ThreePaneScaffoldDestinationItem<0:0>>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun androidx.compose.material3.adaptive.navigation/androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive.navigation/androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop_getter|androidx_compose_material3_adaptive_navigation_DefaultThreePaneScaffoldNavigator$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective?, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<kotlin/Any> // androidx.compose.material3.adaptive.navigation/rememberListDetailPaneScaffoldNavigator|rememberListDetailPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective?;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout/PaneScaffoldDirective?, androidx.compose.material3.adaptive.layout/ThreePaneScaffoldAdaptStrategies?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive.navigation/ThreePaneScaffoldNavigator<kotlin/Any> // androidx.compose.material3.adaptive.navigation/rememberSupportingPaneScaffoldNavigator|rememberSupportingPaneScaffoldNavigator(androidx.compose.material3.adaptive.layout.PaneScaffoldDirective?;androidx.compose.material3.adaptive.layout.ThreePaneScaffoldAdaptStrategies?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0]
diff --git a/compose/material3/adaptive/adaptive/bcv/native/current.txt b/compose/material3/adaptive/adaptive/bcv/native/current.txt index 0005820..31d633c 100644 --- a/compose/material3/adaptive/adaptive/bcv/native/current.txt +++ b/compose/material3/adaptive/adaptive/bcv/native/current.txt
@@ -63,6 +63,9 @@ final fun (androidx.compose.material3.adaptive/Posture).<get-allHorizontalHingeBounds>(): kotlin.collections/List<androidx.compose.ui.geometry/Rect> // androidx.compose.material3.adaptive/allHorizontalHingeBounds.<get-allHorizontalHingeBounds>|<get-allHorizontalHingeBounds>@androidx.compose.material3.adaptive.Posture(){}[0] final val androidx.compose.material3.adaptive/allVerticalHingeBounds // androidx.compose.material3.adaptive/allVerticalHingeBounds|@androidx.compose.material3.adaptive.Posture{}allVerticalHingeBounds[0] final fun (androidx.compose.material3.adaptive/Posture).<get-allVerticalHingeBounds>(): kotlin.collections/List<androidx.compose.ui.geometry/Rect> // androidx.compose.material3.adaptive/allVerticalHingeBounds.<get-allVerticalHingeBounds>|<get-allVerticalHingeBounds>@androidx.compose.material3.adaptive.Posture(){}[0] +final val androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_HingeInfo$stableprop // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_HingeInfo$stableprop|#static{}androidx_compose_material3_adaptive_HingeInfo$stableprop[0] +final val androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_Posture$stableprop // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_Posture$stableprop|#static{}androidx_compose_material3_adaptive_Posture$stableprop[0] +final val androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop|#static{}androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop[0] final val androidx.compose.material3.adaptive/occludingHorizontalHingeBounds // androidx.compose.material3.adaptive/occludingHorizontalHingeBounds|@androidx.compose.material3.adaptive.Posture{}occludingHorizontalHingeBounds[0] final fun (androidx.compose.material3.adaptive/Posture).<get-occludingHorizontalHingeBounds>(): kotlin.collections/List<androidx.compose.ui.geometry/Rect> // androidx.compose.material3.adaptive/occludingHorizontalHingeBounds.<get-occludingHorizontalHingeBounds>|<get-occludingHorizontalHingeBounds>@androidx.compose.material3.adaptive.Posture(){}[0] final val androidx.compose.material3.adaptive/occludingVerticalHingeBounds // androidx.compose.material3.adaptive/occludingVerticalHingeBounds|@androidx.compose.material3.adaptive.Posture{}occludingVerticalHingeBounds[0] @@ -72,7 +75,10 @@ final val androidx.compose.material3.adaptive/separatingVerticalHingeBounds // androidx.compose.material3.adaptive/separatingVerticalHingeBounds|@androidx.compose.material3.adaptive.Posture{}separatingVerticalHingeBounds[0] final fun (androidx.compose.material3.adaptive/Posture).<get-separatingVerticalHingeBounds>(): kotlin.collections/List<androidx.compose.ui.geometry/Rect> // androidx.compose.material3.adaptive/separatingVerticalHingeBounds.<get-separatingVerticalHingeBounds>|<get-separatingVerticalHingeBounds>@androidx.compose.material3.adaptive.Posture(){}[0] -final fun androidx.compose.material3.adaptive/currentWindowAdaptiveInfo(): androidx.compose.material3.adaptive/WindowAdaptiveInfo // androidx.compose.material3.adaptive/currentWindowAdaptiveInfo|currentWindowAdaptiveInfo(){}[0] -final fun androidx.compose.material3.adaptive/currentWindowAdaptiveInfo(kotlin/Boolean = ...): androidx.compose.material3.adaptive/WindowAdaptiveInfo // androidx.compose.material3.adaptive/currentWindowAdaptiveInfo|currentWindowAdaptiveInfo(kotlin.Boolean){}[0] -final fun androidx.compose.material3.adaptive/currentWindowDpSize(): androidx.compose.ui.unit/DpSize // androidx.compose.material3.adaptive/currentWindowDpSize|currentWindowDpSize(){}[0] -final fun androidx.compose.material3.adaptive/currentWindowSize(): androidx.compose.ui.unit/IntSize // androidx.compose.material3.adaptive/currentWindowSize|currentWindowSize(){}[0] +final fun androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_HingeInfo$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_HingeInfo$stableprop_getter|androidx_compose_material3_adaptive_HingeInfo$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_Posture$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_Posture$stableprop_getter|androidx_compose_material3_adaptive_Posture$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop_getter(): kotlin/Int // androidx.compose.material3.adaptive/androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop_getter|androidx_compose_material3_adaptive_WindowAdaptiveInfo$stableprop_getter(){}[0] +final fun androidx.compose.material3.adaptive/currentWindowAdaptiveInfo(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3.adaptive/WindowAdaptiveInfo // androidx.compose.material3.adaptive/currentWindowAdaptiveInfo|currentWindowAdaptiveInfo(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive/currentWindowAdaptiveInfo(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.adaptive/WindowAdaptiveInfo // androidx.compose.material3.adaptive/currentWindowAdaptiveInfo|currentWindowAdaptiveInfo(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive/currentWindowDpSize(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.unit/DpSize // androidx.compose.material3.adaptive/currentWindowDpSize|currentWindowDpSize(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.material3.adaptive/currentWindowSize(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.unit/IntSize // androidx.compose.material3.adaptive/currentWindowSize|currentWindowSize(androidx.compose.runtime.Composer?;kotlin.Int){}[0]
diff --git a/compose/material3/material3-common/bcv/native/current.txt b/compose/material3/material3-common/bcv/native/current.txt index 0b30df5..85d210d 100644 --- a/compose/material3/material3-common/bcv/native/current.txt +++ b/compose/material3/material3-common/bcv/native/current.txt
@@ -194,11 +194,21 @@ final fun <get-BaselineTonalPalette>(): androidx.compose.material3.common/TonalPalette // androidx.compose.material3.common/TonalPaletteDefaults.BaselineTonalPalette.<get-BaselineTonalPalette>|<get-BaselineTonalPalette>(){}[0] } +final val androidx.compose.material3.common.tokens/androidx_compose_material3_common_tokens_PaletteTokens$stableprop // androidx.compose.material3.common.tokens/androidx_compose_material3_common_tokens_PaletteTokens$stableprop|#static{}androidx_compose_material3_common_tokens_PaletteTokens$stableprop[0] final val androidx.compose.material3.common/LocalMinimumInteractiveComponentSize // androidx.compose.material3.common/LocalMinimumInteractiveComponentSize|{}LocalMinimumInteractiveComponentSize[0] final fun <get-LocalMinimumInteractiveComponentSize>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.unit/Dp> // androidx.compose.material3.common/LocalMinimumInteractiveComponentSize.<get-LocalMinimumInteractiveComponentSize>|<get-LocalMinimumInteractiveComponentSize>(){}[0] +final val androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifier$stableprop // androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifier$stableprop|#static{}androidx_compose_material3_common_MinimumInteractiveModifier$stableprop[0] +final val androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop // androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop|#static{}androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop[0] +final val androidx.compose.material3.common/androidx_compose_material3_common_TonalPalette$stableprop // androidx.compose.material3.common/androidx_compose_material3_common_TonalPalette$stableprop|#static{}androidx_compose_material3_common_TonalPalette$stableprop[0] +final val androidx.compose.material3.common/androidx_compose_material3_common_TonalPaletteDefaults$stableprop // androidx.compose.material3.common/androidx_compose_material3_common_TonalPaletteDefaults$stableprop|#static{}androidx_compose_material3_common_TonalPaletteDefaults$stableprop[0] final fun (androidx.compose.ui/Modifier).androidx.compose.material3.common/minimumInteractiveComponentSize(): androidx.compose.ui/Modifier // androidx.compose.material3.common/minimumInteractiveComponentSize|minimumInteractiveComponentSize@androidx.compose.ui.Modifier(){}[0] -final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.painter/Painter, androidx.compose.ui.graphics/ColorProducer?, kotlin/String?, androidx.compose.ui/Modifier = ...) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;androidx.compose.ui.graphics.ColorProducer?;kotlin.String?;androidx.compose.ui.Modifier){}[0] -final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] +final fun androidx.compose.material3.common.tokens/androidx_compose_material3_common_tokens_PaletteTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.common.tokens/androidx_compose_material3_common_tokens_PaletteTokens$stableprop_getter|androidx_compose_material3_common_tokens_PaletteTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.painter/Painter, androidx.compose.ui.graphics/ColorProducer?, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;androidx.compose.ui.graphics.ColorProducer?;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.common/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.common/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifier$stableprop_getter|androidx_compose_material3_common_MinimumInteractiveModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.material3.common/androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop_getter|androidx_compose_material3_common_MinimumInteractiveModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.material3.common/androidx_compose_material3_common_TonalPalette$stableprop_getter(): kotlin/Int // androidx.compose.material3.common/androidx_compose_material3_common_TonalPalette$stableprop_getter|androidx_compose_material3_common_TonalPalette$stableprop_getter(){}[0] +final fun androidx.compose.material3.common/androidx_compose_material3_common_TonalPaletteDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.common/androidx_compose_material3_common_TonalPaletteDefaults$stableprop_getter|androidx_compose_material3_common_TonalPaletteDefaults$stableprop_getter(){}[0]
diff --git a/compose/material3/material3-window-size-class/bcv/native/current.txt b/compose/material3/material3-window-size-class/bcv/native/current.txt index 127bafd..c8fdf33 100644 --- a/compose/material3/material3-window-size-class/bcv/native/current.txt +++ b/compose/material3/material3-window-size-class/bcv/native/current.txt
@@ -68,3 +68,7 @@ final fun <get-Medium>(): androidx.compose.material3.windowsizeclass/WindowWidthSizeClass // androidx.compose.material3.windowsizeclass/WindowWidthSizeClass.Companion.Medium.<get-Medium>|<get-Medium>(){}[0] } } + +final val androidx.compose.material3.windowsizeclass/androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop // androidx.compose.material3.windowsizeclass/androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop|#static{}androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop[0] + +final fun androidx.compose.material3.windowsizeclass/androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop_getter(): kotlin/Int // androidx.compose.material3.windowsizeclass/androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop_getter|androidx_compose_material3_windowsizeclass_WindowSizeClass$stableprop_getter(){}[0]
diff --git a/compose/material3/material3/bcv/native/current.txt b/compose/material3/material3/bcv/native/current.txt index 34a6a38..45cf27c 100644 --- a/compose/material3/material3/bcv/native/current.txt +++ b/compose/material3/material3/bcv/native/current.txt
@@ -114,7 +114,7 @@ abstract interface androidx.compose.material3/AppBarRowScope : androidx.compose.material3/AppBarScope // androidx.compose.material3/AppBarRowScope|null[0] abstract interface androidx.compose.material3/BasicAlertDialogOverride { // androidx.compose.material3/BasicAlertDialogOverride|null[0] - abstract fun (androidx.compose.material3/BasicAlertDialogOverrideScope).BasicAlertDialog() // androidx.compose.material3/BasicAlertDialogOverride.BasicAlertDialog|BasicAlertDialog@androidx.compose.material3.BasicAlertDialogOverrideScope(){}[0] + abstract fun (androidx.compose.material3/BasicAlertDialogOverrideScope).BasicAlertDialog(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/BasicAlertDialogOverride.BasicAlertDialog|BasicAlertDialog@androidx.compose.material3.BasicAlertDialogOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/BottomAppBarScrollBehavior { // androidx.compose.material3/BottomAppBarScrollBehavior|null[0] @@ -154,9 +154,9 @@ abstract fun (androidx.compose.ui/Modifier).animateWidth(androidx.compose.foundation.interaction/InteractionSource): androidx.compose.ui/Modifier // androidx.compose.material3/ButtonGroupScope.animateWidth|animateWidth@androidx.compose.ui.Modifier(androidx.compose.foundation.interaction.InteractionSource){}[0] abstract fun (androidx.compose.ui/Modifier).weight(kotlin/Float): androidx.compose.ui/Modifier // androidx.compose.material3/ButtonGroupScope.weight|weight@androidx.compose.ui.Modifier(kotlin.Float){}[0] abstract fun (androidx.compose.ui/Modifier).weight(kotlin/Float, kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.material3/ButtonGroupScope.weight|weight@androidx.compose.ui.Modifier(kotlin.Float;kotlin.Boolean){}[0] - abstract fun clickableItem(kotlin/Function0<kotlin/Unit>, kotlin/String, kotlin/Function0<kotlin/Unit>? = ..., kotlin/Float = ..., kotlin/Boolean = ...) // androidx.compose.material3/ButtonGroupScope.clickableItem|clickableItem(kotlin.Function0<kotlin.Unit>;kotlin.String;kotlin.Function0<kotlin.Unit>?;kotlin.Float;kotlin.Boolean){}[0] - abstract fun customItem(kotlin/Function0<kotlin/Unit>, kotlin/Function1<androidx.compose.material3/ButtonGroupMenuState, kotlin/Unit>) // androidx.compose.material3/ButtonGroupScope.customItem|customItem(kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.material3.ButtonGroupMenuState,kotlin.Unit>){}[0] - abstract fun toggleableItem(kotlin/Boolean, kotlin/String, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, kotlin/Function0<kotlin/Unit>? = ..., kotlin/Float = ..., kotlin/Boolean = ...) // androidx.compose.material3/ButtonGroupScope.toggleableItem|toggleableItem(kotlin.Boolean;kotlin.String;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;kotlin.Function0<kotlin.Unit>?;kotlin.Float;kotlin.Boolean){}[0] + abstract fun clickableItem(kotlin/Function0<kotlin/Unit>, kotlin/String, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? = ..., kotlin/Float = ..., kotlin/Boolean = ...) // androidx.compose.material3/ButtonGroupScope.clickableItem|clickableItem(kotlin.Function0<kotlin.Unit>;kotlin.String;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Float;kotlin.Boolean){}[0] + abstract fun customItem(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3/ButtonGroupMenuState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.material3/ButtonGroupScope.customItem|customItem(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.ButtonGroupMenuState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun toggleableItem(kotlin/Boolean, kotlin/String, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? = ..., kotlin/Float = ..., kotlin/Boolean = ...) // androidx.compose.material3/ButtonGroupScope.toggleableItem|toggleableItem(kotlin.Boolean;kotlin.String;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Float;kotlin.Boolean){}[0] } abstract interface androidx.compose.material3/DatePickerFormatter { // androidx.compose.material3/DatePickerFormatter|null[0] @@ -225,11 +225,11 @@ } abstract interface androidx.compose.material3/HorizontalFloatingToolbarOverride { // androidx.compose.material3/HorizontalFloatingToolbarOverride|null[0] - abstract fun (androidx.compose.material3/HorizontalFloatingToolbarOverrideScope).HorizontalFloatingToolbar() // androidx.compose.material3/HorizontalFloatingToolbarOverride.HorizontalFloatingToolbar|HorizontalFloatingToolbar@androidx.compose.material3.HorizontalFloatingToolbarOverrideScope(){}[0] + abstract fun (androidx.compose.material3/HorizontalFloatingToolbarOverrideScope).HorizontalFloatingToolbar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/HorizontalFloatingToolbarOverride.HorizontalFloatingToolbar|HorizontalFloatingToolbar@androidx.compose.material3.HorizontalFloatingToolbarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/HorizontalFloatingToolbarWithFabOverride { // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverride|null[0] - abstract fun (androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope).HorizontalFloatingToolbarWithFab() // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverride.HorizontalFloatingToolbarWithFab|HorizontalFloatingToolbarWithFab@androidx.compose.material3.HorizontalFloatingToolbarWithFabOverrideScope(){}[0] + abstract fun (androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope).HorizontalFloatingToolbarWithFab(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverride.HorizontalFloatingToolbarWithFab|HorizontalFloatingToolbarWithFab@androidx.compose.material3.HorizontalFloatingToolbarWithFabOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/ModalWideNavigationRailOverride { // androidx.compose.material3/ModalWideNavigationRailOverride|null[0] @@ -253,18 +253,18 @@ abstract interface androidx.compose.material3/MultiChoiceSegmentedButtonRowScope : androidx.compose.foundation.layout/RowScope // androidx.compose.material3/MultiChoiceSegmentedButtonRowScope|null[0] abstract interface androidx.compose.material3/NavigationBarOverride { // androidx.compose.material3/NavigationBarOverride|null[0] - abstract fun (androidx.compose.material3/NavigationBarOverrideScope).NavigationBar() // androidx.compose.material3/NavigationBarOverride.NavigationBar|NavigationBar@androidx.compose.material3.NavigationBarOverrideScope(){}[0] + abstract fun (androidx.compose.material3/NavigationBarOverrideScope).NavigationBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/NavigationBarOverride.NavigationBar|NavigationBar@androidx.compose.material3.NavigationBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/NavigationDrawerItemColors { // androidx.compose.material3/NavigationDrawerItemColors|null[0] - abstract fun badgeColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.badgeColor|badgeColor(kotlin.Boolean){}[0] - abstract fun containerColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.containerColor|containerColor(kotlin.Boolean){}[0] - abstract fun iconColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.iconColor|iconColor(kotlin.Boolean){}[0] - abstract fun textColor(kotlin/Boolean): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.textColor|textColor(kotlin.Boolean){}[0] + abstract fun badgeColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.badgeColor|badgeColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun containerColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.containerColor|containerColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun iconColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.iconColor|iconColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun textColor(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.compose.ui.graphics/Color> // androidx.compose.material3/NavigationDrawerItemColors.textColor|textColor(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/NavigationRailOverride { // androidx.compose.material3/NavigationRailOverride|null[0] - abstract fun (androidx.compose.material3/NavigationRailOverrideScope).NavigationRail() // androidx.compose.material3/NavigationRailOverride.NavigationRail|NavigationRail@androidx.compose.material3.NavigationRailOverrideScope(){}[0] + abstract fun (androidx.compose.material3/NavigationRailOverrideScope).NavigationRail(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/NavigationRailOverride.NavigationRail|NavigationRail@androidx.compose.material3.NavigationRailOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/SearchBarScrollBehavior { // androidx.compose.material3/SearchBarScrollBehavior|null[0] @@ -287,13 +287,13 @@ } abstract interface androidx.compose.material3/ShortNavigationBarOverride { // androidx.compose.material3/ShortNavigationBarOverride|null[0] - abstract fun (androidx.compose.material3/ShortNavigationBarOverrideScope).ShortNavigationBar() // androidx.compose.material3/ShortNavigationBarOverride.ShortNavigationBar|ShortNavigationBar@androidx.compose.material3.ShortNavigationBarOverrideScope(){}[0] + abstract fun (androidx.compose.material3/ShortNavigationBarOverrideScope).ShortNavigationBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/ShortNavigationBarOverride.ShortNavigationBar|ShortNavigationBar@androidx.compose.material3.ShortNavigationBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/SingleChoiceSegmentedButtonRowScope : androidx.compose.foundation.layout/RowScope // androidx.compose.material3/SingleChoiceSegmentedButtonRowScope|null[0] abstract interface androidx.compose.material3/SingleRowTopAppBarOverride { // androidx.compose.material3/SingleRowTopAppBarOverride|null[0] - abstract fun (androidx.compose.material3/SingleRowTopAppBarOverrideScope).SingleRowTopAppBar() // androidx.compose.material3/SingleRowTopAppBarOverride.SingleRowTopAppBar|SingleRowTopAppBar@androidx.compose.material3.SingleRowTopAppBarOverrideScope(){}[0] + abstract fun (androidx.compose.material3/SingleRowTopAppBarOverrideScope).SingleRowTopAppBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/SingleRowTopAppBarOverride.SingleRowTopAppBar|SingleRowTopAppBar@androidx.compose.material3.SingleRowTopAppBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/SnackbarData { // androidx.compose.material3/SnackbarData|null[0] @@ -372,7 +372,7 @@ } abstract interface androidx.compose.material3/TwoRowsTopAppBarOverride { // androidx.compose.material3/TwoRowsTopAppBarOverride|null[0] - abstract fun (androidx.compose.material3/TwoRowsTopAppBarOverrideScope).TwoRowsTopAppBar() // androidx.compose.material3/TwoRowsTopAppBarOverride.TwoRowsTopAppBar|TwoRowsTopAppBar@androidx.compose.material3.TwoRowsTopAppBarOverrideScope(){}[0] + abstract fun (androidx.compose.material3/TwoRowsTopAppBarOverrideScope).TwoRowsTopAppBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/TwoRowsTopAppBarOverride.TwoRowsTopAppBar|TwoRowsTopAppBar@androidx.compose.material3.TwoRowsTopAppBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/VerticalFloatingToolbarOverride { // androidx.compose.material3/VerticalFloatingToolbarOverride|null[0] @@ -384,7 +384,7 @@ } abstract interface androidx.compose.material3/WideNavigationRailOverride { // androidx.compose.material3/WideNavigationRailOverride|null[0] - abstract fun (androidx.compose.material3/WideNavigationRailOverrideScope).WideNavigationRail() // androidx.compose.material3/WideNavigationRailOverride.WideNavigationRail|WideNavigationRail@androidx.compose.material3.WideNavigationRailOverrideScope(){}[0] + abstract fun (androidx.compose.material3/WideNavigationRailOverrideScope).WideNavigationRail(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/WideNavigationRailOverride.WideNavigationRail|WideNavigationRail@androidx.compose.material3.WideNavigationRailOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } abstract interface androidx.compose.material3/WideNavigationRailState { // androidx.compose.material3/WideNavigationRailState|null[0] @@ -416,15 +416,15 @@ abstract val carouselItemDrawInfo // androidx.compose.material3.carousel/CarouselItemScope.carouselItemDrawInfo|{}carouselItemDrawInfo[0] abstract fun <get-carouselItemDrawInfo>(): androidx.compose.material3.carousel/CarouselItemDrawInfo // androidx.compose.material3.carousel/CarouselItemScope.carouselItemDrawInfo.<get-carouselItemDrawInfo>|<get-carouselItemDrawInfo>(){}[0] - abstract fun (androidx.compose.ui/Modifier).maskBorder(androidx.compose.foundation/BorderStroke, androidx.compose.ui.graphics/Shape): androidx.compose.ui/Modifier // androidx.compose.material3.carousel/CarouselItemScope.maskBorder|maskBorder@androidx.compose.ui.Modifier(androidx.compose.foundation.BorderStroke;androidx.compose.ui.graphics.Shape){}[0] - abstract fun (androidx.compose.ui/Modifier).maskClip(androidx.compose.ui.graphics/Shape): androidx.compose.ui/Modifier // androidx.compose.material3.carousel/CarouselItemScope.maskClip|maskClip@androidx.compose.ui.Modifier(androidx.compose.ui.graphics.Shape){}[0] - abstract fun rememberMaskShape(androidx.compose.ui.graphics/Shape): androidx.compose.foundation.shape/GenericShape // androidx.compose.material3.carousel/CarouselItemScope.rememberMaskShape|rememberMaskShape(androidx.compose.ui.graphics.Shape){}[0] + abstract fun (androidx.compose.ui/Modifier).maskBorder(androidx.compose.foundation/BorderStroke, androidx.compose.ui.graphics/Shape, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui/Modifier // androidx.compose.material3.carousel/CarouselItemScope.maskBorder|maskBorder@androidx.compose.ui.Modifier(androidx.compose.foundation.BorderStroke;androidx.compose.ui.graphics.Shape;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun (androidx.compose.ui/Modifier).maskClip(androidx.compose.ui.graphics/Shape, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui/Modifier // androidx.compose.material3.carousel/CarouselItemScope.maskClip|maskClip@androidx.compose.ui.Modifier(androidx.compose.ui.graphics.Shape;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + abstract fun rememberMaskShape(androidx.compose.ui.graphics/Shape, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.shape/GenericShape // androidx.compose.material3.carousel/CarouselItemScope.rememberMaskShape|rememberMaskShape(androidx.compose.ui.graphics.Shape;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } sealed interface androidx.compose.material3/AppBarScope { // androidx.compose.material3/AppBarScope|null[0] - abstract fun clickableItem(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/String, kotlin/Boolean = ...) // androidx.compose.material3/AppBarScope.clickableItem|clickableItem(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.String;kotlin.Boolean){}[0] - abstract fun customItem(kotlin/Function0<kotlin/Unit>, kotlin/Function1<androidx.compose.material3/AppBarMenuState, kotlin/Unit>) // androidx.compose.material3/AppBarScope.customItem|customItem(kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.material3.AppBarMenuState,kotlin.Unit>){}[0] - abstract fun toggleableItem(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/String, kotlin/Boolean = ...) // androidx.compose.material3/AppBarScope.toggleableItem|toggleableItem(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.String;kotlin.Boolean){}[0] + abstract fun clickableItem(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/String, kotlin/Boolean = ...) // androidx.compose.material3/AppBarScope.clickableItem|clickableItem(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.String;kotlin.Boolean){}[0] + abstract fun customItem(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function3<androidx.compose.material3/AppBarMenuState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.material3/AppBarScope.customItem|customItem(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function3<androidx.compose.material3.AppBarMenuState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun toggleableItem(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/String, kotlin/Boolean = ...) // androidx.compose.material3/AppBarScope.toggleableItem|toggleableItem(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.String;kotlin.Boolean){}[0] } sealed interface androidx.compose.material3/FloatingToolbarScrollBehavior : androidx.compose.ui.input.nestedscroll/NestedScrollConnection { // androidx.compose.material3/FloatingToolbarScrollBehavior|null[0] @@ -504,7 +504,7 @@ final class androidx.compose.material3/BasicAlertDialogOverrideScope { // androidx.compose.material3/BasicAlertDialogOverrideScope|null[0] final val content // androidx.compose.material3/BasicAlertDialogOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/BasicAlertDialogOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/BasicAlertDialogOverrideScope.content.<get-content>|<get-content>(){}[0] final val modifier // androidx.compose.material3/BasicAlertDialogOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/BasicAlertDialogOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val onDismissRequest // androidx.compose.material3/BasicAlertDialogOverrideScope.onDismissRequest|{}onDismissRequest[0] @@ -953,7 +953,7 @@ final val colors // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.colors|{}colors[0] final fun <get-colors>(): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.colors.<get-colors>|<get-colors>(){}[0] final val content // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.content.<get-content>|<get-content>(){}[0] final val contentPadding // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.contentPadding|{}contentPadding[0] final fun <get-contentPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.contentPadding.<get-contentPadding>|<get-contentPadding>(){}[0] final val expandedShadowElevation // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.expandedShadowElevation|{}expandedShadowElevation[0] @@ -961,7 +961,7 @@ final val isExpanded // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.isExpanded|{}isExpanded[0] final fun <get-isExpanded>(): kotlin/Boolean // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.isExpanded.<get-isExpanded>|<get-isExpanded>(){}[0] final val leadingContent // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.leadingContent|{}leadingContent[0] - final fun <get-leadingContent>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.leadingContent.<get-leadingContent>|<get-leadingContent>(){}[0] + final fun <get-leadingContent>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.leadingContent.<get-leadingContent>|<get-leadingContent>(){}[0] final val modifier // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val scrollBehavior // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.scrollBehavior|{}scrollBehavior[0] @@ -969,7 +969,7 @@ final val shape // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.shape|{}shape[0] final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.shape.<get-shape>|<get-shape>(){}[0] final val trailingContent // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.trailingContent|{}trailingContent[0] - final fun <get-trailingContent>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.trailingContent.<get-trailingContent>|<get-trailingContent>(){}[0] + final fun <get-trailingContent>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/HorizontalFloatingToolbarOverrideScope.trailingContent.<get-trailingContent>|<get-trailingContent>(){}[0] } final class androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope { // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope|null[0] @@ -980,13 +980,13 @@ final val colors // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.colors|{}colors[0] final fun <get-colors>(): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.colors.<get-colors>|<get-colors>(){}[0] final val content // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.content.<get-content>|<get-content>(){}[0] final val contentPadding // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.contentPadding|{}contentPadding[0] final fun <get-contentPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.contentPadding.<get-contentPadding>|<get-contentPadding>(){}[0] final val expandedShadowElevation // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.expandedShadowElevation|{}expandedShadowElevation[0] final fun <get-expandedShadowElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.expandedShadowElevation.<get-expandedShadowElevation>|<get-expandedShadowElevation>(){}[0] final val floatingActionButton // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.floatingActionButton|{}floatingActionButton[0] - final fun <get-floatingActionButton>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.floatingActionButton.<get-floatingActionButton>|<get-floatingActionButton>(){}[0] + final fun <get-floatingActionButton>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.floatingActionButton.<get-floatingActionButton>|<get-floatingActionButton>(){}[0] final val floatingActionButtonPosition // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.floatingActionButtonPosition|{}floatingActionButtonPosition[0] final fun <get-floatingActionButtonPosition>(): androidx.compose.material3/FloatingToolbarHorizontalFabPosition // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.floatingActionButtonPosition.<get-floatingActionButtonPosition>|<get-floatingActionButtonPosition>(){}[0] final val isExpanded // androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope.isExpanded|{}isExpanded[0] @@ -1180,7 +1180,7 @@ final val containerColor // androidx.compose.material3/NavigationBarOverrideScope.containerColor|{}containerColor[0] final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationBarOverrideScope.containerColor.<get-containerColor>|<get-containerColor>(){}[0] final val content // androidx.compose.material3/NavigationBarOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> // androidx.compose.material3/NavigationBarOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/NavigationBarOverrideScope.content.<get-content>|<get-content>(){}[0] final val contentColor // androidx.compose.material3/NavigationBarOverrideScope.contentColor|{}contentColor[0] final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationBarOverrideScope.contentColor.<get-contentColor>|<get-contentColor>(){}[0] final val modifier // androidx.compose.material3/NavigationBarOverrideScope.modifier|{}modifier[0] @@ -1243,11 +1243,11 @@ final val containerColor // androidx.compose.material3/NavigationRailOverrideScope.containerColor|{}containerColor[0] final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationRailOverrideScope.containerColor.<get-containerColor>|<get-containerColor>(){}[0] final val content // androidx.compose.material3/NavigationRailOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit> // androidx.compose.material3/NavigationRailOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/NavigationRailOverrideScope.content.<get-content>|<get-content>(){}[0] final val contentColor // androidx.compose.material3/NavigationRailOverrideScope.contentColor|{}contentColor[0] final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationRailOverrideScope.contentColor.<get-contentColor>|<get-contentColor>(){}[0] final val header // androidx.compose.material3/NavigationRailOverrideScope.header|{}header[0] - final fun <get-header>(): kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? // androidx.compose.material3/NavigationRailOverrideScope.header.<get-header>|<get-header>(){}[0] + final fun <get-header>(): kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/NavigationRailOverrideScope.header.<get-header>|<get-header>(){}[0] final val modifier // androidx.compose.material3/NavigationRailOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/NavigationRailOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val windowInsets // androidx.compose.material3/NavigationRailOverrideScope.windowInsets|{}windowInsets[0] @@ -1488,7 +1488,7 @@ final val containerColor // androidx.compose.material3/ShortNavigationBarOverrideScope.containerColor|{}containerColor[0] final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarOverrideScope.containerColor.<get-containerColor>|<get-containerColor>(){}[0] final val content // androidx.compose.material3/ShortNavigationBarOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/ShortNavigationBarOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/ShortNavigationBarOverrideScope.content.<get-content>|<get-content>(){}[0] final val contentColor // androidx.compose.material3/ShortNavigationBarOverrideScope.contentColor|{}contentColor[0] final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarOverrideScope.contentColor.<get-contentColor>|<get-contentColor>(){}[0] final val modifier // androidx.compose.material3/ShortNavigationBarOverrideScope.modifier|{}modifier[0] @@ -1499,7 +1499,7 @@ final class androidx.compose.material3/SingleRowTopAppBarOverrideScope { // androidx.compose.material3/SingleRowTopAppBarOverrideScope|null[0] final val actions // androidx.compose.material3/SingleRowTopAppBarOverrideScope.actions|{}actions[0] - final fun <get-actions>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.actions.<get-actions>|<get-actions>(){}[0] + final fun <get-actions>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.actions.<get-actions>|<get-actions>(){}[0] final val colors // androidx.compose.material3/SingleRowTopAppBarOverrideScope.colors|{}colors[0] final fun <get-colors>(): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/SingleRowTopAppBarOverrideScope.colors.<get-colors>|<get-colors>(){}[0] final val expandedHeight // androidx.compose.material3/SingleRowTopAppBarOverrideScope.expandedHeight|{}expandedHeight[0] @@ -1507,15 +1507,15 @@ final val modifier // androidx.compose.material3/SingleRowTopAppBarOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/SingleRowTopAppBarOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val navigationIcon // androidx.compose.material3/SingleRowTopAppBarOverrideScope.navigationIcon|{}navigationIcon[0] - final fun <get-navigationIcon>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.navigationIcon.<get-navigationIcon>|<get-navigationIcon>(){}[0] + final fun <get-navigationIcon>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.navigationIcon.<get-navigationIcon>|<get-navigationIcon>(){}[0] final val scrollBehavior // androidx.compose.material3/SingleRowTopAppBarOverrideScope.scrollBehavior|{}scrollBehavior[0] final fun <get-scrollBehavior>(): androidx.compose.material3/TopAppBarScrollBehavior? // androidx.compose.material3/SingleRowTopAppBarOverrideScope.scrollBehavior.<get-scrollBehavior>|<get-scrollBehavior>(){}[0] final val subtitle // androidx.compose.material3/SingleRowTopAppBarOverrideScope.subtitle|{}subtitle[0] - final fun <get-subtitle>(): kotlin/Function0<kotlin/Unit>? // androidx.compose.material3/SingleRowTopAppBarOverrideScope.subtitle.<get-subtitle>|<get-subtitle>(){}[0] + final fun <get-subtitle>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/SingleRowTopAppBarOverrideScope.subtitle.<get-subtitle>|<get-subtitle>(){}[0] final val subtitleTextStyle // androidx.compose.material3/SingleRowTopAppBarOverrideScope.subtitleTextStyle|{}subtitleTextStyle[0] final fun <get-subtitleTextStyle>(): androidx.compose.ui.text/TextStyle // androidx.compose.material3/SingleRowTopAppBarOverrideScope.subtitleTextStyle.<get-subtitleTextStyle>|<get-subtitleTextStyle>(){}[0] final val title // androidx.compose.material3/SingleRowTopAppBarOverrideScope.title|{}title[0] - final fun <get-title>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.title.<get-title>|<get-title>(){}[0] + final fun <get-title>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/SingleRowTopAppBarOverrideScope.title.<get-title>|<get-title>(){}[0] final val titleHorizontalAlignment // androidx.compose.material3/SingleRowTopAppBarOverrideScope.titleHorizontalAlignment|{}titleHorizontalAlignment[0] final fun <get-titleHorizontalAlignment>(): androidx.compose.ui/Alignment.Horizontal // androidx.compose.material3/SingleRowTopAppBarOverrideScope.titleHorizontalAlignment.<get-titleHorizontalAlignment>|<get-titleHorizontalAlignment>(){}[0] final val titleTextStyle // androidx.compose.material3/SingleRowTopAppBarOverrideScope.titleTextStyle|{}titleTextStyle[0] @@ -1920,7 +1920,7 @@ final class androidx.compose.material3/TwoRowsTopAppBarOverrideScope { // androidx.compose.material3/TwoRowsTopAppBarOverrideScope|null[0] final val actions // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.actions|{}actions[0] - final fun <get-actions>(): kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.actions.<get-actions>|<get-actions>(){}[0] + final fun <get-actions>(): kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.actions.<get-actions>|<get-actions>(){}[0] final val collapsedHeight // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.collapsedHeight|{}collapsedHeight[0] final fun <get-collapsedHeight>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.collapsedHeight.<get-collapsedHeight>|<get-collapsedHeight>(){}[0] final val colors // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.colors|{}colors[0] @@ -1930,23 +1930,23 @@ final val modifier // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val navigationIcon // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.navigationIcon|{}navigationIcon[0] - final fun <get-navigationIcon>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.navigationIcon.<get-navigationIcon>|<get-navigationIcon>(){}[0] + final fun <get-navigationIcon>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.navigationIcon.<get-navigationIcon>|<get-navigationIcon>(){}[0] final val scrollBehavior // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.scrollBehavior|{}scrollBehavior[0] final fun <get-scrollBehavior>(): androidx.compose.material3/TopAppBarScrollBehavior? // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.scrollBehavior.<get-scrollBehavior>|<get-scrollBehavior>(){}[0] final val smallSubtitle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallSubtitle|{}smallSubtitle[0] - final fun <get-smallSubtitle>(): kotlin/Function0<kotlin/Unit>? // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallSubtitle.<get-smallSubtitle>|<get-smallSubtitle>(){}[0] + final fun <get-smallSubtitle>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallSubtitle.<get-smallSubtitle>|<get-smallSubtitle>(){}[0] final val smallSubtitleTextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallSubtitleTextStyle|{}smallSubtitleTextStyle[0] final fun <get-smallSubtitleTextStyle>(): androidx.compose.ui.text/TextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallSubtitleTextStyle.<get-smallSubtitleTextStyle>|<get-smallSubtitleTextStyle>(){}[0] final val smallTitle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallTitle|{}smallTitle[0] - final fun <get-smallTitle>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallTitle.<get-smallTitle>|<get-smallTitle>(){}[0] + final fun <get-smallTitle>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallTitle.<get-smallTitle>|<get-smallTitle>(){}[0] final val smallTitleTextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallTitleTextStyle|{}smallTitleTextStyle[0] final fun <get-smallTitleTextStyle>(): androidx.compose.ui.text/TextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.smallTitleTextStyle.<get-smallTitleTextStyle>|<get-smallTitleTextStyle>(){}[0] final val subtitle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.subtitle|{}subtitle[0] - final fun <get-subtitle>(): kotlin/Function0<kotlin/Unit>? // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.subtitle.<get-subtitle>|<get-subtitle>(){}[0] + final fun <get-subtitle>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.subtitle.<get-subtitle>|<get-subtitle>(){}[0] final val subtitleTextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.subtitleTextStyle|{}subtitleTextStyle[0] final fun <get-subtitleTextStyle>(): androidx.compose.ui.text/TextStyle // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.subtitleTextStyle.<get-subtitleTextStyle>|<get-subtitleTextStyle>(){}[0] final val title // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.title|{}title[0] - final fun <get-title>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.title.<get-title>|<get-title>(){}[0] + final fun <get-title>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.title.<get-title>|<get-title>(){}[0] final val titleBottomPadding // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.titleBottomPadding|{}titleBottomPadding[0] final fun <get-titleBottomPadding>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.titleBottomPadding.<get-titleBottomPadding>|<get-titleBottomPadding>(){}[0] final val titleHorizontalAlignment // androidx.compose.material3/TwoRowsTopAppBarOverrideScope.titleHorizontalAlignment|{}titleHorizontalAlignment[0] @@ -2104,9 +2104,9 @@ final val colors // androidx.compose.material3/WideNavigationRailOverrideScope.colors|{}colors[0] final fun <get-colors>(): androidx.compose.material3/WideNavigationRailColors // androidx.compose.material3/WideNavigationRailOverrideScope.colors.<get-colors>|<get-colors>(){}[0] final val content // androidx.compose.material3/WideNavigationRailOverrideScope.content|{}content[0] - final fun <get-content>(): kotlin/Function0<kotlin/Unit> // androidx.compose.material3/WideNavigationRailOverrideScope.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.material3/WideNavigationRailOverrideScope.content.<get-content>|<get-content>(){}[0] final val header // androidx.compose.material3/WideNavigationRailOverrideScope.header|{}header[0] - final fun <get-header>(): kotlin/Function0<kotlin/Unit>? // androidx.compose.material3/WideNavigationRailOverrideScope.header.<get-header>|<get-header>(){}[0] + final fun <get-header>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>? // androidx.compose.material3/WideNavigationRailOverrideScope.header.<get-header>|<get-header>(){}[0] final val modifier // androidx.compose.material3/WideNavigationRailOverrideScope.modifier|{}modifier[0] final fun <get-modifier>(): androidx.compose.ui/Modifier // androidx.compose.material3/WideNavigationRailOverrideScope.modifier.<get-modifier>|<get-modifier>(){}[0] final val shape // androidx.compose.material3/WideNavigationRailOverrideScope.shape|{}shape[0] @@ -2282,9 +2282,9 @@ abstract fun (androidx.compose.ui/Modifier).exposedDropdownSize(kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.material3/ExposedDropdownMenuBoxScope.exposedDropdownSize|exposedDropdownSize@androidx.compose.ui.Modifier(kotlin.Boolean){}[0] abstract fun (androidx.compose.ui/Modifier).menuAnchor(androidx.compose.material3/ExposedDropdownMenuAnchorType, kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.material3/ExposedDropdownMenuBoxScope.menuAnchor|menuAnchor@androidx.compose.ui.Modifier(androidx.compose.material3.ExposedDropdownMenuAnchorType;kotlin.Boolean){}[0] final fun (androidx.compose.ui/Modifier).menuAnchor(): androidx.compose.ui/Modifier // androidx.compose.material3/ExposedDropdownMenuBoxScope.menuAnchor|menuAnchor@androidx.compose.ui.Modifier(){}[0] - final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] - final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] - final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] + final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun ExposedDropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuBoxScope.ExposedDropdownMenu|ExposedDropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } sealed class androidx.compose.material3/MaterialShapes { // androidx.compose.material3/MaterialShapes|null[0] @@ -2368,9 +2368,9 @@ final val MinSmallItemSize // androidx.compose.material3.carousel/CarouselDefaults.MinSmallItemSize|{}MinSmallItemSize[0] final fun <get-MinSmallItemSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3.carousel/CarouselDefaults.MinSmallItemSize.<get-MinSmallItemSize>|<get-MinSmallItemSize>(){}[0] - final fun multiBrowseFlingBehavior(androidx.compose.material3.carousel/CarouselState, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ...): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.multiBrowseFlingBehavior|multiBrowseFlingBehavior(androidx.compose.material3.carousel.CarouselState;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){}[0] - final fun noSnapFlingBehavior(): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.noSnapFlingBehavior|noSnapFlingBehavior(){}[0] - final fun singleAdvanceFlingBehavior(androidx.compose.material3.carousel/CarouselState, androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ...): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.singleAdvanceFlingBehavior|singleAdvanceFlingBehavior(androidx.compose.material3.carousel.CarouselState;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){}[0] + final fun multiBrowseFlingBehavior(androidx.compose.material3.carousel/CarouselState, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.multiBrowseFlingBehavior|multiBrowseFlingBehavior(androidx.compose.material3.carousel.CarouselState;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun noSnapFlingBehavior(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.noSnapFlingBehavior|noSnapFlingBehavior(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun singleAdvanceFlingBehavior(androidx.compose.material3.carousel/CarouselState, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation.gestures/TargetedFlingBehavior // androidx.compose.material3.carousel/CarouselDefaults.singleAdvanceFlingBehavior|singleAdvanceFlingBehavior(androidx.compose.material3.carousel.CarouselState;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3.pulltorefresh/PullToRefreshDefaults { // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults|null[0] @@ -2381,34 +2381,34 @@ final val PositionalThreshold // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.PositionalThreshold|{}PositionalThreshold[0] final fun <get-PositionalThreshold>(): androidx.compose.ui.unit/Dp // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.PositionalThreshold.<get-PositionalThreshold>|<get-PositionalThreshold>(){}[0] final val containerColor // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val indicatorColor // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.indicatorColor|{}indicatorColor[0] - final fun <get-indicatorColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(){}[0] + final fun <get-indicatorColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val loadingIndicatorColor // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorColor|{}loadingIndicatorColor[0] - final fun <get-loadingIndicatorColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorColor.<get-loadingIndicatorColor>|<get-loadingIndicatorColor>(){}[0] + final fun <get-loadingIndicatorColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorColor.<get-loadingIndicatorColor>|<get-loadingIndicatorColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val loadingIndicatorContainerColor // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorContainerColor|{}loadingIndicatorContainerColor[0] - final fun <get-loadingIndicatorContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorContainerColor.<get-loadingIndicatorContainerColor>|<get-loadingIndicatorContainerColor>(){}[0] + final fun <get-loadingIndicatorContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.loadingIndicatorContainerColor.<get-loadingIndicatorContainerColor>|<get-loadingIndicatorContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.shape|{}shape[0] final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.shape.<get-shape>|<get-shape>(){}[0] - final fun Indicator(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.Indicator|Indicator(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun IndicatorBox(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.IndicatorBox|IndicatorBox(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>){}[0] - final fun LoadingIndicator(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.LoadingIndicator|LoadingIndicator(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun Indicator(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.Indicator|Indicator(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun IndicatorBox(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.IndicatorBox|IndicatorBox(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun LoadingIndicator(androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.pulltorefresh/PullToRefreshDefaults.LoadingIndicator|LoadingIndicator(androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/AlertDialogDefaults { // androidx.compose.material3/AlertDialogDefaults|null[0] final val TonalElevation // androidx.compose.material3/AlertDialogDefaults.TonalElevation|{}TonalElevation[0] final fun <get-TonalElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/AlertDialogDefaults.TonalElevation.<get-TonalElevation>|<get-TonalElevation>(){}[0] final val containerColor // androidx.compose.material3/AlertDialogDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val iconContentColor // androidx.compose.material3/AlertDialogDefaults.iconContentColor|{}iconContentColor[0] - final fun <get-iconContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.iconContentColor.<get-iconContentColor>|<get-iconContentColor>(){}[0] + final fun <get-iconContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.iconContentColor.<get-iconContentColor>|<get-iconContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/AlertDialogDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/AlertDialogDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/AlertDialogDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val textContentColor // androidx.compose.material3/AlertDialogDefaults.textContentColor|{}textContentColor[0] - final fun <get-textContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.textContentColor.<get-textContentColor>|<get-textContentColor>(){}[0] + final fun <get-textContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.textContentColor.<get-textContentColor>|<get-textContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val titleContentColor // androidx.compose.material3/AlertDialogDefaults.titleContentColor|{}titleContentColor[0] - final fun <get-titleContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.titleContentColor.<get-titleContentColor>|<get-titleContentColor>(){}[0] + final fun <get-titleContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/AlertDialogDefaults.titleContentColor.<get-titleContentColor>|<get-titleContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/AssistChipDefaults { // androidx.compose.material3/AssistChipDefaults|null[0] @@ -2417,21 +2417,21 @@ final val IconSize // androidx.compose.material3/AssistChipDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/AssistChipDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] final val shape // androidx.compose.material3/AssistChipDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/AssistChipDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/AssistChipDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun assistChipBorder(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipBorder // androidx.compose.material3/AssistChipDefaults.assistChipBorder|assistChipBorder(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun assistChipBorder(kotlin/Boolean, androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/AssistChipDefaults.assistChipBorder|assistChipBorder(kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun assistChipColors(): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.assistChipColors|assistChipColors(){}[0] - final fun assistChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.assistChipColors|assistChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun assistChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipElevation // androidx.compose.material3/AssistChipDefaults.assistChipElevation|assistChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun elevatedAssistChipColors(): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipColors|elevatedAssistChipColors(){}[0] - final fun elevatedAssistChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipColors|elevatedAssistChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevatedAssistChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipElevation // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipElevation|elevatedAssistChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun assistChipBorder(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipBorder // androidx.compose.material3/AssistChipDefaults.assistChipBorder|assistChipBorder(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun assistChipBorder(kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/AssistChipDefaults.assistChipBorder|assistChipBorder(kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun assistChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.assistChipColors|assistChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun assistChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.assistChipColors|assistChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun assistChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipElevation // androidx.compose.material3/AssistChipDefaults.assistChipElevation|assistChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedAssistChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipColors|elevatedAssistChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedAssistChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipColors|elevatedAssistChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedAssistChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipElevation // androidx.compose.material3/AssistChipDefaults.elevatedAssistChipElevation|elevatedAssistChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/BadgeDefaults { // androidx.compose.material3/BadgeDefaults|null[0] final val containerColor // androidx.compose.material3/BadgeDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/BadgeDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/BadgeDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/BottomAppBarDefaults { // androidx.compose.material3/BottomAppBarDefaults|null[0] @@ -2448,34 +2448,34 @@ final val FlexibleHorizontalArrangement // androidx.compose.material3/BottomAppBarDefaults.FlexibleHorizontalArrangement|{}FlexibleHorizontalArrangement[0] final fun <get-FlexibleHorizontalArrangement>(): androidx.compose.foundation.layout/Arrangement.Horizontal // androidx.compose.material3/BottomAppBarDefaults.FlexibleHorizontalArrangement.<get-FlexibleHorizontalArrangement>|<get-FlexibleHorizontalArrangement>(){}[0] final val bottomAppBarFabColor // androidx.compose.material3/BottomAppBarDefaults.bottomAppBarFabColor|{}bottomAppBarFabColor[0] - final fun <get-bottomAppBarFabColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomAppBarDefaults.bottomAppBarFabColor.<get-bottomAppBarFabColor>|<get-bottomAppBarFabColor>(){}[0] + final fun <get-bottomAppBarFabColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomAppBarDefaults.bottomAppBarFabColor.<get-bottomAppBarFabColor>|<get-bottomAppBarFabColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val containerColor // androidx.compose.material3/BottomAppBarDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomAppBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomAppBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/BottomAppBarDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/BottomAppBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/BottomAppBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun exitAlwaysScrollBehavior(androidx.compose.material3/BottomAppBarState = ..., kotlin/Function0<kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>? = ...): androidx.compose.material3/BottomAppBarScrollBehavior // androidx.compose.material3/BottomAppBarDefaults.exitAlwaysScrollBehavior|exitAlwaysScrollBehavior(androidx.compose.material3.BottomAppBarState;kotlin.Function0<kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?){}[0] + final fun exitAlwaysScrollBehavior(androidx.compose.material3/BottomAppBarState?, kotlin/Function0<kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/BottomAppBarScrollBehavior // androidx.compose.material3/BottomAppBarDefaults.exitAlwaysScrollBehavior|exitAlwaysScrollBehavior(androidx.compose.material3.BottomAppBarState?;kotlin.Function0<kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/BottomSheetDefaults { // androidx.compose.material3/BottomSheetDefaults|null[0] final val ContainerColor // androidx.compose.material3/BottomSheetDefaults.ContainerColor|{}ContainerColor[0] - final fun <get-ContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomSheetDefaults.ContainerColor.<get-ContainerColor>|<get-ContainerColor>(){}[0] + final fun <get-ContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomSheetDefaults.ContainerColor.<get-ContainerColor>|<get-ContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val Elevation // androidx.compose.material3/BottomSheetDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/BottomSheetDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val ExpandedShape // androidx.compose.material3/BottomSheetDefaults.ExpandedShape|{}ExpandedShape[0] - final fun <get-ExpandedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/BottomSheetDefaults.ExpandedShape.<get-ExpandedShape>|<get-ExpandedShape>(){}[0] + final fun <get-ExpandedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/BottomSheetDefaults.ExpandedShape.<get-ExpandedShape>|<get-ExpandedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val HiddenShape // androidx.compose.material3/BottomSheetDefaults.HiddenShape|{}HiddenShape[0] - final fun <get-HiddenShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/BottomSheetDefaults.HiddenShape.<get-HiddenShape>|<get-HiddenShape>(){}[0] + final fun <get-HiddenShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/BottomSheetDefaults.HiddenShape.<get-HiddenShape>|<get-HiddenShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val ScrimColor // androidx.compose.material3/BottomSheetDefaults.ScrimColor|{}ScrimColor[0] - final fun <get-ScrimColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomSheetDefaults.ScrimColor.<get-ScrimColor>|<get-ScrimColor>(){}[0] + final fun <get-ScrimColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/BottomSheetDefaults.ScrimColor.<get-ScrimColor>|<get-ScrimColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val SheetMaxWidth // androidx.compose.material3/BottomSheetDefaults.SheetMaxWidth|{}SheetMaxWidth[0] final fun <get-SheetMaxWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/BottomSheetDefaults.SheetMaxWidth.<get-SheetMaxWidth>|<get-SheetMaxWidth>(){}[0] final val SheetPeekHeight // androidx.compose.material3/BottomSheetDefaults.SheetPeekHeight|{}SheetPeekHeight[0] final fun <get-SheetPeekHeight>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/BottomSheetDefaults.SheetPeekHeight.<get-SheetPeekHeight>|<get-SheetPeekHeight>(){}[0] final val windowInsets // androidx.compose.material3/BottomSheetDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/BottomSheetDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/BottomSheetDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun DragHandle(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/BottomSheetDefaults.DragHandle|DragHandle(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color){}[0] + final fun DragHandle(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomSheetDefaults.DragHandle|DragHandle(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ButtonDefaults { // androidx.compose.material3/ButtonDefaults|null[0] @@ -2534,51 +2534,51 @@ final val TextButtonWithIconContentPadding // androidx.compose.material3/ButtonDefaults.TextButtonWithIconContentPadding|{}TextButtonWithIconContentPadding[0] final fun <get-TextButtonWithIconContentPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/ButtonDefaults.TextButtonWithIconContentPadding.<get-TextButtonWithIconContentPadding>|<get-TextButtonWithIconContentPadding>(){}[0] final val elevatedShape // androidx.compose.material3/ButtonDefaults.elevatedShape|{}elevatedShape[0] - final fun <get-elevatedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.elevatedShape.<get-elevatedShape>|<get-elevatedShape>(){}[0] + final fun <get-elevatedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.elevatedShape.<get-elevatedShape>|<get-elevatedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargePressedShape // androidx.compose.material3/ButtonDefaults.extraLargePressedShape|{}extraLargePressedShape[0] - final fun <get-extraLargePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(){}[0] + final fun <get-extraLargePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallPressedShape // androidx.compose.material3/ButtonDefaults.extraSmallPressedShape|{}extraSmallPressedShape[0] - final fun <get-extraSmallPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(){}[0] + final fun <get-extraSmallPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val filledTonalShape // androidx.compose.material3/ButtonDefaults.filledTonalShape|{}filledTonalShape[0] - final fun <get-filledTonalShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.filledTonalShape.<get-filledTonalShape>|<get-filledTonalShape>(){}[0] + final fun <get-filledTonalShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.filledTonalShape.<get-filledTonalShape>|<get-filledTonalShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largePressedShape // androidx.compose.material3/ButtonDefaults.largePressedShape|{}largePressedShape[0] - final fun <get-largePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(){}[0] + final fun <get-largePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumPressedShape // androidx.compose.material3/ButtonDefaults.mediumPressedShape|{}mediumPressedShape[0] - final fun <get-mediumPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(){}[0] + final fun <get-mediumPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val outlinedButtonBorder // androidx.compose.material3/ButtonDefaults.outlinedButtonBorder|{}outlinedButtonBorder[0] - final fun <get-outlinedButtonBorder>(): androidx.compose.foundation/BorderStroke // androidx.compose.material3/ButtonDefaults.outlinedButtonBorder.<get-outlinedButtonBorder>|<get-outlinedButtonBorder>(){}[0] + final fun <get-outlinedButtonBorder>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/ButtonDefaults.outlinedButtonBorder.<get-outlinedButtonBorder>|<get-outlinedButtonBorder>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val outlinedShape // androidx.compose.material3/ButtonDefaults.outlinedShape|{}outlinedShape[0] - final fun <get-outlinedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(){}[0] + final fun <get-outlinedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val pressedShape // androidx.compose.material3/ButtonDefaults.pressedShape|{}pressedShape[0] - final fun <get-pressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.pressedShape.<get-pressedShape>|<get-pressedShape>(){}[0] + final fun <get-pressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.pressedShape.<get-pressedShape>|<get-pressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/ButtonDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val squareShape // androidx.compose.material3/ButtonDefaults.squareShape|{}squareShape[0] - final fun <get-squareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.squareShape.<get-squareShape>|<get-squareShape>(){}[0] + final fun <get-squareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.squareShape.<get-squareShape>|<get-squareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val textShape // androidx.compose.material3/ButtonDefaults.textShape|{}textShape[0] - final fun <get-textShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.textShape.<get-textShape>|<get-textShape>(){}[0] + final fun <get-textShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonDefaults.textShape.<get-textShape>|<get-textShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun buttonColors(): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.buttonColors|buttonColors(){}[0] - final fun buttonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.buttonColors|buttonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun buttonElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.buttonElevation|buttonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun buttonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.buttonColors|buttonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun buttonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.buttonColors|buttonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun buttonElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.buttonElevation|buttonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun contentPaddingFor(androidx.compose.ui.unit/Dp): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/ButtonDefaults.contentPaddingFor|contentPaddingFor(androidx.compose.ui.unit.Dp){}[0] - final fun elevatedButtonColors(): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.elevatedButtonColors|elevatedButtonColors(){}[0] - final fun elevatedButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.elevatedButtonColors|elevatedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevatedButtonElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.elevatedButtonElevation|elevatedButtonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun filledTonalButtonColors(): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.filledTonalButtonColors|filledTonalButtonColors(){}[0] - final fun filledTonalButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.filledTonalButtonColors|filledTonalButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun filledTonalButtonElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.filledTonalButtonElevation|filledTonalButtonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun elevatedButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.elevatedButtonColors|elevatedButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.elevatedButtonColors|elevatedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedButtonElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.elevatedButtonElevation|elevatedButtonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filledTonalButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.filledTonalButtonColors|filledTonalButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filledTonalButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.filledTonalButtonColors|filledTonalButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filledTonalButtonElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonElevation // androidx.compose.material3/ButtonDefaults.filledTonalButtonElevation|filledTonalButtonElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun iconSizeFor(androidx.compose.ui.unit/Dp): androidx.compose.ui.unit/Dp // androidx.compose.material3/ButtonDefaults.iconSizeFor|iconSizeFor(androidx.compose.ui.unit.Dp){}[0] final fun iconSpacingFor(androidx.compose.ui.unit/Dp): androidx.compose.ui.unit/Dp // androidx.compose.material3/ButtonDefaults.iconSpacingFor|iconSpacingFor(androidx.compose.ui.unit.Dp){}[0] - final fun outlinedButtonBorder(kotlin/Boolean = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/ButtonDefaults.outlinedButtonBorder|outlinedButtonBorder(kotlin.Boolean){}[0] - final fun outlinedButtonColors(): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(){}[0] - final fun outlinedButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun shapes(): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapes|shapes(){}[0] - final fun shapes(androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ...): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?){}[0] - final fun shapesFor(androidx.compose.ui.unit/Dp): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapesFor|shapesFor(androidx.compose.ui.unit.Dp){}[0] - final fun textButtonColors(): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.textButtonColors|textButtonColors(){}[0] - final fun textButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.textButtonColors|textButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun textStyleFor(androidx.compose.ui.unit/Dp): androidx.compose.ui.text/TextStyle // androidx.compose.material3/ButtonDefaults.textStyleFor|textStyleFor(androidx.compose.ui.unit.Dp){}[0] + final fun outlinedButtonBorder(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/ButtonDefaults.outlinedButtonBorder|outlinedButtonBorder(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.outlinedButtonColors|outlinedButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapes(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapes|shapes(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun shapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapesFor(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonShapes // androidx.compose.material3/ButtonDefaults.shapesFor|shapesFor(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun textButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.textButtonColors|textButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun textButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ButtonColors // androidx.compose.material3/ButtonDefaults.textButtonColors|textButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun textStyleFor(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.text/TextStyle // androidx.compose.material3/ButtonDefaults.textStyleFor|textStyleFor(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/ButtonGroupDefaults { // androidx.compose.material3/ButtonGroupDefaults|null[0] @@ -2591,47 +2591,47 @@ final val connectedButtonCheckedShape // androidx.compose.material3/ButtonGroupDefaults.connectedButtonCheckedShape|{}connectedButtonCheckedShape[0] final fun <get-connectedButtonCheckedShape>(): androidx.compose.foundation.shape/RoundedCornerShape // androidx.compose.material3/ButtonGroupDefaults.connectedButtonCheckedShape.<get-connectedButtonCheckedShape>|<get-connectedButtonCheckedShape>(){}[0] final val connectedLeadingButtonPressShape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonPressShape|{}connectedLeadingButtonPressShape[0] - final fun <get-connectedLeadingButtonPressShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonPressShape.<get-connectedLeadingButtonPressShape>|<get-connectedLeadingButtonPressShape>(){}[0] + final fun <get-connectedLeadingButtonPressShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonPressShape.<get-connectedLeadingButtonPressShape>|<get-connectedLeadingButtonPressShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val connectedLeadingButtonShape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonShape|{}connectedLeadingButtonShape[0] - final fun <get-connectedLeadingButtonShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonShape.<get-connectedLeadingButtonShape>|<get-connectedLeadingButtonShape>(){}[0] + final fun <get-connectedLeadingButtonShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonShape.<get-connectedLeadingButtonShape>|<get-connectedLeadingButtonShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val connectedMiddleButtonPressShape // androidx.compose.material3/ButtonGroupDefaults.connectedMiddleButtonPressShape|{}connectedMiddleButtonPressShape[0] - final fun <get-connectedMiddleButtonPressShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedMiddleButtonPressShape.<get-connectedMiddleButtonPressShape>|<get-connectedMiddleButtonPressShape>(){}[0] + final fun <get-connectedMiddleButtonPressShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedMiddleButtonPressShape.<get-connectedMiddleButtonPressShape>|<get-connectedMiddleButtonPressShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val connectedTrailingButtonPressShape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonPressShape|{}connectedTrailingButtonPressShape[0] - final fun <get-connectedTrailingButtonPressShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonPressShape.<get-connectedTrailingButtonPressShape>|<get-connectedTrailingButtonPressShape>(){}[0] + final fun <get-connectedTrailingButtonPressShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonPressShape.<get-connectedTrailingButtonPressShape>|<get-connectedTrailingButtonPressShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val connectedTrailingButtonShape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonShape|{}connectedTrailingButtonShape[0] - final fun <get-connectedTrailingButtonShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonShape.<get-connectedTrailingButtonShape>|<get-connectedTrailingButtonShape>(){}[0] + final fun <get-connectedTrailingButtonShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonShape.<get-connectedTrailingButtonShape>|<get-connectedTrailingButtonShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun connectedLeadingButtonShapes(androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ...): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonShapes|connectedLeadingButtonShapes(androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape){}[0] - final fun connectedMiddleButtonShapes(androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ...): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedMiddleButtonShapes|connectedMiddleButtonShapes(androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape){}[0] - final fun connectedTrailingButtonShapes(androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ...): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonShapes|connectedTrailingButtonShapes(androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape){}[0] + final fun connectedLeadingButtonShapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedLeadingButtonShapes|connectedLeadingButtonShapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun connectedMiddleButtonShapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedMiddleButtonShapes|connectedMiddleButtonShapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun connectedTrailingButtonShapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ButtonGroupDefaults.connectedTrailingButtonShapes|connectedTrailingButtonShapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/CardDefaults { // androidx.compose.material3/CardDefaults|null[0] final val elevatedShape // androidx.compose.material3/CardDefaults.elevatedShape|{}elevatedShape[0] - final fun <get-elevatedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.elevatedShape.<get-elevatedShape>|<get-elevatedShape>(){}[0] + final fun <get-elevatedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.elevatedShape.<get-elevatedShape>|<get-elevatedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val outlinedShape // androidx.compose.material3/CardDefaults.outlinedShape|{}outlinedShape[0] - final fun <get-outlinedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(){}[0] + final fun <get-outlinedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/CardDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/CardDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun cardColors(): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.cardColors|cardColors(){}[0] - final fun cardColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.cardColors|cardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun cardElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.cardElevation|cardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun elevatedCardColors(): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.elevatedCardColors|elevatedCardColors(){}[0] - final fun elevatedCardColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.elevatedCardColors|elevatedCardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevatedCardElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.elevatedCardElevation|elevatedCardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun outlinedCardBorder(kotlin/Boolean = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/CardDefaults.outlinedCardBorder|outlinedCardBorder(kotlin.Boolean){}[0] - final fun outlinedCardColors(): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.outlinedCardColors|outlinedCardColors(){}[0] - final fun outlinedCardColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.outlinedCardColors|outlinedCardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedCardElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.outlinedCardElevation|outlinedCardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun cardColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.cardColors|cardColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun cardColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.cardColors|cardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun cardElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.cardElevation|cardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedCardColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.elevatedCardColors|elevatedCardColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedCardColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.elevatedCardColors|elevatedCardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedCardElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.elevatedCardElevation|elevatedCardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedCardBorder(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/CardDefaults.outlinedCardBorder|outlinedCardBorder(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedCardColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.outlinedCardColors|outlinedCardColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedCardColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardColors // androidx.compose.material3/CardDefaults.outlinedCardColors|outlinedCardColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedCardElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CardElevation // androidx.compose.material3/CardDefaults.outlinedCardElevation|outlinedCardElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/CheckboxDefaults { // androidx.compose.material3/CheckboxDefaults|null[0] final val StrokeWidth // androidx.compose.material3/CheckboxDefaults.StrokeWidth|{}StrokeWidth[0] final fun <get-StrokeWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/CheckboxDefaults.StrokeWidth.<get-StrokeWidth>|<get-StrokeWidth>(){}[0] - final fun colors(): androidx.compose.material3/CheckboxColors // androidx.compose.material3/CheckboxDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/CheckboxColors // androidx.compose.material3/CheckboxDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/CheckboxColors // androidx.compose.material3/CheckboxDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/CheckboxColors // androidx.compose.material3/CheckboxDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/DatePickerDefaults { // androidx.compose.material3/DatePickerDefaults|null[0] @@ -2649,34 +2649,34 @@ final val YearRange // androidx.compose.material3/DatePickerDefaults.YearRange|{}YearRange[0] final fun <get-YearRange>(): kotlin.ranges/IntRange // androidx.compose.material3/DatePickerDefaults.YearRange.<get-YearRange>|<get-YearRange>(){}[0] final val shape // androidx.compose.material3/DatePickerDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/DatePickerDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/DatePickerDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun DatePickerHeadline(kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/DatePickerDefaults.DatePickerHeadline|DatePickerHeadline(kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier){}[0] - final fun DatePickerHeadline(kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/DatePickerDefaults.DatePickerHeadline|DatePickerHeadline(kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] - final fun DatePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/DatePickerDefaults.DatePickerTitle|DatePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier){}[0] - final fun DatePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/DatePickerDefaults.DatePickerTitle|DatePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] - final fun colors(): androidx.compose.material3/DatePickerColors // androidx.compose.material3/DatePickerDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/TextFieldColors? = ...): androidx.compose.material3/DatePickerColors // androidx.compose.material3/DatePickerDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.TextFieldColors?){}[0] + final fun DatePickerHeadline(kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePickerDefaults.DatePickerHeadline|DatePickerHeadline(kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DatePickerHeadline(kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePickerDefaults.DatePickerHeadline|DatePickerHeadline(kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DatePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePickerDefaults.DatePickerTitle|DatePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DatePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePickerDefaults.DatePickerTitle|DatePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/DatePickerColors // androidx.compose.material3/DatePickerDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/DatePickerColors // androidx.compose.material3/DatePickerDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun dateFormatter(kotlin/String = ..., kotlin/String = ..., kotlin/String = ...): androidx.compose.material3/DatePickerFormatter // androidx.compose.material3/DatePickerDefaults.dateFormatter|dateFormatter(kotlin.String;kotlin.String;kotlin.String){}[0] } final object androidx.compose.material3/DateRangePickerDefaults { // androidx.compose.material3/DateRangePickerDefaults|null[0] - final fun DateRangePickerHeadline(kotlin/Long?, kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerHeadline|DateRangePickerHeadline(kotlin.Long?;kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier){}[0] - final fun DateRangePickerHeadline(kotlin/Long?, kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerHeadline|DateRangePickerHeadline(kotlin.Long?;kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] - final fun DateRangePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerTitle|DateRangePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier){}[0] - final fun DateRangePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerTitle|DateRangePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] + final fun DateRangePickerHeadline(kotlin/Long?, kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerHeadline|DateRangePickerHeadline(kotlin.Long?;kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DateRangePickerHeadline(kotlin/Long?, kotlin/Long?, androidx.compose.material3/DisplayMode, androidx.compose.material3/DatePickerFormatter, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerHeadline|DateRangePickerHeadline(kotlin.Long?;kotlin.Long?;androidx.compose.material3.DisplayMode;androidx.compose.material3.DatePickerFormatter;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DateRangePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerTitle|DateRangePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DateRangePickerTitle(androidx.compose.material3/DisplayMode, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePickerDefaults.DateRangePickerTitle|DateRangePickerTitle(androidx.compose.material3.DisplayMode;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultBasicAlertDialogOverride : androidx.compose.material3/BasicAlertDialogOverride { // androidx.compose.material3/DefaultBasicAlertDialogOverride|null[0] - final fun (androidx.compose.material3/BasicAlertDialogOverrideScope).BasicAlertDialog() // androidx.compose.material3/DefaultBasicAlertDialogOverride.BasicAlertDialog|BasicAlertDialog@androidx.compose.material3.BasicAlertDialogOverrideScope(){}[0] + final fun (androidx.compose.material3/BasicAlertDialogOverrideScope).BasicAlertDialog(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultBasicAlertDialogOverride.BasicAlertDialog|BasicAlertDialog@androidx.compose.material3.BasicAlertDialogOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultHorizontalFloatingToolbarOverride : androidx.compose.material3/HorizontalFloatingToolbarOverride { // androidx.compose.material3/DefaultHorizontalFloatingToolbarOverride|null[0] - final fun (androidx.compose.material3/HorizontalFloatingToolbarOverrideScope).HorizontalFloatingToolbar() // androidx.compose.material3/DefaultHorizontalFloatingToolbarOverride.HorizontalFloatingToolbar|HorizontalFloatingToolbar@androidx.compose.material3.HorizontalFloatingToolbarOverrideScope(){}[0] + final fun (androidx.compose.material3/HorizontalFloatingToolbarOverrideScope).HorizontalFloatingToolbar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultHorizontalFloatingToolbarOverride.HorizontalFloatingToolbar|HorizontalFloatingToolbar@androidx.compose.material3.HorizontalFloatingToolbarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultHorizontalFloatingToolbarWithFabOverride : androidx.compose.material3/HorizontalFloatingToolbarWithFabOverride { // androidx.compose.material3/DefaultHorizontalFloatingToolbarWithFabOverride|null[0] - final fun (androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope).HorizontalFloatingToolbarWithFab() // androidx.compose.material3/DefaultHorizontalFloatingToolbarWithFabOverride.HorizontalFloatingToolbarWithFab|HorizontalFloatingToolbarWithFab@androidx.compose.material3.HorizontalFloatingToolbarWithFabOverrideScope(){}[0] + final fun (androidx.compose.material3/HorizontalFloatingToolbarWithFabOverrideScope).HorizontalFloatingToolbarWithFab(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultHorizontalFloatingToolbarWithFabOverride.HorizontalFloatingToolbarWithFab|HorizontalFloatingToolbarWithFab@androidx.compose.material3.HorizontalFloatingToolbarWithFabOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultModalWideNavigationRailOverride : androidx.compose.material3/ModalWideNavigationRailOverride { // androidx.compose.material3/DefaultModalWideNavigationRailOverride|null[0] @@ -2684,23 +2684,23 @@ } final object androidx.compose.material3/DefaultNavigationBarOverride : androidx.compose.material3/NavigationBarOverride { // androidx.compose.material3/DefaultNavigationBarOverride|null[0] - final fun (androidx.compose.material3/NavigationBarOverrideScope).NavigationBar() // androidx.compose.material3/DefaultNavigationBarOverride.NavigationBar|NavigationBar@androidx.compose.material3.NavigationBarOverrideScope(){}[0] + final fun (androidx.compose.material3/NavigationBarOverrideScope).NavigationBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultNavigationBarOverride.NavigationBar|NavigationBar@androidx.compose.material3.NavigationBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultNavigationRailOverride : androidx.compose.material3/NavigationRailOverride { // androidx.compose.material3/DefaultNavigationRailOverride|null[0] - final fun (androidx.compose.material3/NavigationRailOverrideScope).NavigationRail() // androidx.compose.material3/DefaultNavigationRailOverride.NavigationRail|NavigationRail@androidx.compose.material3.NavigationRailOverrideScope(){}[0] + final fun (androidx.compose.material3/NavigationRailOverrideScope).NavigationRail(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultNavigationRailOverride.NavigationRail|NavigationRail@androidx.compose.material3.NavigationRailOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultShortNavigationBarOverride : androidx.compose.material3/ShortNavigationBarOverride { // androidx.compose.material3/DefaultShortNavigationBarOverride|null[0] - final fun (androidx.compose.material3/ShortNavigationBarOverrideScope).ShortNavigationBar() // androidx.compose.material3/DefaultShortNavigationBarOverride.ShortNavigationBar|ShortNavigationBar@androidx.compose.material3.ShortNavigationBarOverrideScope(){}[0] + final fun (androidx.compose.material3/ShortNavigationBarOverrideScope).ShortNavigationBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultShortNavigationBarOverride.ShortNavigationBar|ShortNavigationBar@androidx.compose.material3.ShortNavigationBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultSingleRowTopAppBarOverride : androidx.compose.material3/SingleRowTopAppBarOverride { // androidx.compose.material3/DefaultSingleRowTopAppBarOverride|null[0] - final fun (androidx.compose.material3/SingleRowTopAppBarOverrideScope).SingleRowTopAppBar() // androidx.compose.material3/DefaultSingleRowTopAppBarOverride.SingleRowTopAppBar|SingleRowTopAppBar@androidx.compose.material3.SingleRowTopAppBarOverrideScope(){}[0] + final fun (androidx.compose.material3/SingleRowTopAppBarOverrideScope).SingleRowTopAppBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultSingleRowTopAppBarOverride.SingleRowTopAppBar|SingleRowTopAppBar@androidx.compose.material3.SingleRowTopAppBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultTwoRowsTopAppBarOverride : androidx.compose.material3/TwoRowsTopAppBarOverride { // androidx.compose.material3/DefaultTwoRowsTopAppBarOverride|null[0] - final fun (androidx.compose.material3/TwoRowsTopAppBarOverrideScope).TwoRowsTopAppBar() // androidx.compose.material3/DefaultTwoRowsTopAppBarOverride.TwoRowsTopAppBar|TwoRowsTopAppBar@androidx.compose.material3.TwoRowsTopAppBarOverrideScope(){}[0] + final fun (androidx.compose.material3/TwoRowsTopAppBarOverrideScope).TwoRowsTopAppBar(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultTwoRowsTopAppBarOverride.TwoRowsTopAppBar|TwoRowsTopAppBar@androidx.compose.material3.TwoRowsTopAppBarOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DefaultVerticalFloatingToolbarOverride : androidx.compose.material3/VerticalFloatingToolbarOverride { // androidx.compose.material3/DefaultVerticalFloatingToolbarOverride|null[0] @@ -2712,14 +2712,14 @@ } final object androidx.compose.material3/DefaultWideNavigationRailOverride : androidx.compose.material3/WideNavigationRailOverride { // androidx.compose.material3/DefaultWideNavigationRailOverride|null[0] - final fun (androidx.compose.material3/WideNavigationRailOverrideScope).WideNavigationRail() // androidx.compose.material3/DefaultWideNavigationRailOverride.WideNavigationRail|WideNavigationRail@androidx.compose.material3.WideNavigationRailOverrideScope(){}[0] + final fun (androidx.compose.material3/WideNavigationRailOverrideScope).WideNavigationRail(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/DefaultWideNavigationRailOverride.WideNavigationRail|WideNavigationRail@androidx.compose.material3.WideNavigationRailOverrideScope(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DividerDefaults { // androidx.compose.material3/DividerDefaults|null[0] final val Thickness // androidx.compose.material3/DividerDefaults.Thickness|{}Thickness[0] final fun <get-Thickness>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/DividerDefaults.Thickness.<get-Thickness>|<get-Thickness>(){}[0] final val color // androidx.compose.material3/DividerDefaults.color|{}color[0] - final fun <get-color>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/DividerDefaults.color.<get-color>|<get-color>(){}[0] + final fun <get-color>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/DividerDefaults.color.<get-color>|<get-color>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/DrawerDefaults { // androidx.compose.material3/DrawerDefaults|null[0] @@ -2732,31 +2732,31 @@ final val PermanentDrawerElevation // androidx.compose.material3/DrawerDefaults.PermanentDrawerElevation|{}PermanentDrawerElevation[0] final fun <get-PermanentDrawerElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/DrawerDefaults.PermanentDrawerElevation.<get-PermanentDrawerElevation>|<get-PermanentDrawerElevation>(){}[0] final val containerColor // androidx.compose.material3/DrawerDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val modalContainerColor // androidx.compose.material3/DrawerDefaults.modalContainerColor|{}modalContainerColor[0] - final fun <get-modalContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.modalContainerColor.<get-modalContainerColor>|<get-modalContainerColor>(){}[0] + final fun <get-modalContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.modalContainerColor.<get-modalContainerColor>|<get-modalContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val scrimColor // androidx.compose.material3/DrawerDefaults.scrimColor|{}scrimColor[0] - final fun <get-scrimColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(){}[0] + final fun <get-scrimColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.scrimColor.<get-scrimColor>|<get-scrimColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/DrawerDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/DrawerDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/DrawerDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val standardContainerColor // androidx.compose.material3/DrawerDefaults.standardContainerColor|{}standardContainerColor[0] - final fun <get-standardContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.standardContainerColor.<get-standardContainerColor>|<get-standardContainerColor>(){}[0] + final fun <get-standardContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/DrawerDefaults.standardContainerColor.<get-standardContainerColor>|<get-standardContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/DrawerDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/DrawerDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/DrawerDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/ExposedDropdownMenuDefaults { // androidx.compose.material3/ExposedDropdownMenuDefaults|null[0] final val ItemContentPadding // androidx.compose.material3/ExposedDropdownMenuDefaults.ItemContentPadding|{}ItemContentPadding[0] final fun <get-ItemContentPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/ExposedDropdownMenuDefaults.ItemContentPadding.<get-ItemContentPadding>|<get-ItemContentPadding>(){}[0] - final fun TrailingIcon(kotlin/Boolean) // androidx.compose.material3/ExposedDropdownMenuDefaults.TrailingIcon|TrailingIcon(kotlin.Boolean){}[0] - final fun TrailingIcon(kotlin/Boolean, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/ExposedDropdownMenuDefaults.TrailingIcon|TrailingIcon(kotlin.Boolean;androidx.compose.ui.Modifier){}[0] - final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun textFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun textFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun textFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun TrailingIcon(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuDefaults.TrailingIcon|TrailingIcon(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun TrailingIcon(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuDefaults.TrailingIcon|TrailingIcon(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun outlinedTextFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.outlinedTextFieldColors|outlinedTextFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun textFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun textFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun textFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/ExposedDropdownMenuDefaults.textFieldColors|textFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/FilterChipDefaults { // androidx.compose.material3/FilterChipDefaults|null[0] @@ -2765,15 +2765,15 @@ final val IconSize // androidx.compose.material3/FilterChipDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/FilterChipDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] final val shape // androidx.compose.material3/FilterChipDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FilterChipDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FilterChipDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun elevatedFilterChipColors(): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipColors|elevatedFilterChipColors(){}[0] - final fun elevatedFilterChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipColors|elevatedFilterChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevatedFilterChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipElevation|elevatedFilterChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun filterChipBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/FilterChipDefaults.filterChipBorder|filterChipBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun filterChipColors(): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.filterChipColors|filterChipColors(){}[0] - final fun filterChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.filterChipColors|filterChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun filterChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/FilterChipDefaults.filterChipElevation|filterChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun elevatedFilterChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipColors|elevatedFilterChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedFilterChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipColors|elevatedFilterChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun elevatedFilterChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/FilterChipDefaults.elevatedFilterChipElevation|elevatedFilterChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filterChipBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/FilterChipDefaults.filterChipBorder|filterChipBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filterChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.filterChipColors|filterChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filterChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/FilterChipDefaults.filterChipColors|filterChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun filterChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/FilterChipDefaults.filterChipElevation|filterChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/FloatingActionButtonDefaults { // androidx.compose.material3/FloatingActionButtonDefaults|null[0] @@ -2782,27 +2782,27 @@ final val MediumIconSize // androidx.compose.material3/FloatingActionButtonDefaults.MediumIconSize|{}MediumIconSize[0] final fun <get-MediumIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/FloatingActionButtonDefaults.MediumIconSize.<get-MediumIconSize>|<get-MediumIconSize>(){}[0] final val containerColor // androidx.compose.material3/FloatingActionButtonDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/FloatingActionButtonDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/FloatingActionButtonDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extendedFabShape // androidx.compose.material3/FloatingActionButtonDefaults.extendedFabShape|{}extendedFabShape[0] - final fun <get-extendedFabShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.extendedFabShape.<get-extendedFabShape>|<get-extendedFabShape>(){}[0] + final fun <get-extendedFabShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.extendedFabShape.<get-extendedFabShape>|<get-extendedFabShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeExtendedFabShape // androidx.compose.material3/FloatingActionButtonDefaults.largeExtendedFabShape|{}largeExtendedFabShape[0] - final fun <get-largeExtendedFabShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.largeExtendedFabShape.<get-largeExtendedFabShape>|<get-largeExtendedFabShape>(){}[0] + final fun <get-largeExtendedFabShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.largeExtendedFabShape.<get-largeExtendedFabShape>|<get-largeExtendedFabShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeShape // androidx.compose.material3/FloatingActionButtonDefaults.largeShape|{}largeShape[0] - final fun <get-largeShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.largeShape.<get-largeShape>|<get-largeShape>(){}[0] + final fun <get-largeShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.largeShape.<get-largeShape>|<get-largeShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumExtendedFabShape // androidx.compose.material3/FloatingActionButtonDefaults.mediumExtendedFabShape|{}mediumExtendedFabShape[0] - final fun <get-mediumExtendedFabShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.mediumExtendedFabShape.<get-mediumExtendedFabShape>|<get-mediumExtendedFabShape>(){}[0] + final fun <get-mediumExtendedFabShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.mediumExtendedFabShape.<get-mediumExtendedFabShape>|<get-mediumExtendedFabShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumShape // androidx.compose.material3/FloatingActionButtonDefaults.mediumShape|{}mediumShape[0] - final fun <get-mediumShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.mediumShape.<get-mediumShape>|<get-mediumShape>(){}[0] + final fun <get-mediumShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.mediumShape.<get-mediumShape>|<get-mediumShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/FloatingActionButtonDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallExtendedFabShape // androidx.compose.material3/FloatingActionButtonDefaults.smallExtendedFabShape|{}smallExtendedFabShape[0] - final fun <get-smallExtendedFabShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.smallExtendedFabShape.<get-smallExtendedFabShape>|<get-smallExtendedFabShape>(){}[0] + final fun <get-smallExtendedFabShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.smallExtendedFabShape.<get-smallExtendedFabShape>|<get-smallExtendedFabShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallShape // androidx.compose.material3/FloatingActionButtonDefaults.smallShape|{}smallShape[0] - final fun <get-smallShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.smallShape.<get-smallShape>|<get-smallShape>(){}[0] + final fun <get-smallShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingActionButtonDefaults.smallShape.<get-smallShape>|<get-smallShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun bottomAppBarFabElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/FloatingActionButtonElevation // androidx.compose.material3/FloatingActionButtonDefaults.bottomAppBarFabElevation|bottomAppBarFabElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun elevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/FloatingActionButtonElevation // androidx.compose.material3/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun loweredElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/FloatingActionButtonElevation // androidx.compose.material3/FloatingActionButtonDefaults.loweredElevation|loweredElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun elevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingActionButtonElevation // androidx.compose.material3/FloatingActionButtonDefaults.elevation|elevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun loweredElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingActionButtonElevation // androidx.compose.material3/FloatingActionButtonDefaults.loweredElevation|loweredElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/FloatingToolbarDefaults { // androidx.compose.material3/FloatingToolbarDefaults|null[0] @@ -2815,7 +2815,7 @@ final val ContainerExpandedElevationWithFab // androidx.compose.material3/FloatingToolbarDefaults.ContainerExpandedElevationWithFab|{}ContainerExpandedElevationWithFab[0] final fun <get-ContainerExpandedElevationWithFab>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/FloatingToolbarDefaults.ContainerExpandedElevationWithFab.<get-ContainerExpandedElevationWithFab>|<get-ContainerExpandedElevationWithFab>(){}[0] final val ContainerShape // androidx.compose.material3/FloatingToolbarDefaults.ContainerShape|{}ContainerShape[0] - final fun <get-ContainerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingToolbarDefaults.ContainerShape.<get-ContainerShape>|<get-ContainerShape>(){}[0] + final fun <get-ContainerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/FloatingToolbarDefaults.ContainerShape.<get-ContainerShape>|<get-ContainerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val ContainerSize // androidx.compose.material3/FloatingToolbarDefaults.ContainerSize|{}ContainerSize[0] final fun <get-ContainerSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/FloatingToolbarDefaults.ContainerSize.<get-ContainerSize>|<get-ContainerSize>(){}[0] final val ContentPadding // androidx.compose.material3/FloatingToolbarDefaults.ContentPadding|{}ContentPadding[0] @@ -2826,125 +2826,125 @@ final fun <get-ScrollDistanceThreshold>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/FloatingToolbarDefaults.ScrollDistanceThreshold.<get-ScrollDistanceThreshold>|<get-ScrollDistanceThreshold>(){}[0] final fun (androidx.compose.ui/Modifier).floatingToolbarVerticalNestedScroll(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Boolean = ...): androidx.compose.ui/Modifier // androidx.compose.material3/FloatingToolbarDefaults.floatingToolbarVerticalNestedScroll|floatingToolbarVerticalNestedScroll@androidx.compose.ui.Modifier(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Boolean){}[0] - final fun <#A1: kotlin/Any?> animationSpec(): androidx.compose.animation.core/FiniteAnimationSpec<#A1> // androidx.compose.material3/FloatingToolbarDefaults.animationSpec|animationSpec(){0§<kotlin.Any?>}[0] - final fun StandardFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FloatingToolbarDefaults.StandardFloatingActionButton|StandardFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] - final fun VibrantFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FloatingToolbarDefaults.VibrantFloatingActionButton|VibrantFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] - final fun exitAlwaysScrollBehavior(androidx.compose.material3/FloatingToolbarExitDirection, androidx.compose.material3/FloatingToolbarState = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> = ...): androidx.compose.material3/FloatingToolbarScrollBehavior // androidx.compose.material3/FloatingToolbarDefaults.exitAlwaysScrollBehavior|exitAlwaysScrollBehavior(androidx.compose.material3.FloatingToolbarExitDirection;androidx.compose.material3.FloatingToolbarState;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>){}[0] - final fun horizontalEnterTransition(androidx.compose.ui/Alignment.Horizontal): androidx.compose.animation/EnterTransition // androidx.compose.material3/FloatingToolbarDefaults.horizontalEnterTransition|horizontalEnterTransition(androidx.compose.ui.Alignment.Horizontal){}[0] - final fun horizontalExitTransition(androidx.compose.ui/Alignment.Horizontal): androidx.compose.animation/ExitTransition // androidx.compose.material3/FloatingToolbarDefaults.horizontalExitTransition|horizontalExitTransition(androidx.compose.ui.Alignment.Horizontal){}[0] - final fun standardFloatingToolbarColors(): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.standardFloatingToolbarColors|standardFloatingToolbarColors(){}[0] - final fun standardFloatingToolbarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.standardFloatingToolbarColors|standardFloatingToolbarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun verticalEnterTransition(androidx.compose.ui/Alignment.Vertical): androidx.compose.animation/EnterTransition // androidx.compose.material3/FloatingToolbarDefaults.verticalEnterTransition|verticalEnterTransition(androidx.compose.ui.Alignment.Vertical){}[0] - final fun verticalExitTransition(androidx.compose.ui/Alignment.Vertical): androidx.compose.animation/ExitTransition // androidx.compose.material3/FloatingToolbarDefaults.verticalExitTransition|verticalExitTransition(androidx.compose.ui.Alignment.Vertical){}[0] - final fun vibrantFloatingToolbarColors(): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.vibrantFloatingToolbarColors|vibrantFloatingToolbarColors(){}[0] - final fun vibrantFloatingToolbarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.vibrantFloatingToolbarColors|vibrantFloatingToolbarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun <#A1: kotlin/Any?> animationSpec(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation.core/FiniteAnimationSpec<#A1> // androidx.compose.material3/FloatingToolbarDefaults.animationSpec|animationSpec(androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] + final fun StandardFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FloatingToolbarDefaults.StandardFloatingActionButton|StandardFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun VibrantFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FloatingToolbarDefaults.VibrantFloatingActionButton|VibrantFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun exitAlwaysScrollBehavior(androidx.compose.material3/FloatingToolbarExitDirection, androidx.compose.material3/FloatingToolbarState?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingToolbarScrollBehavior // androidx.compose.material3/FloatingToolbarDefaults.exitAlwaysScrollBehavior|exitAlwaysScrollBehavior(androidx.compose.material3.FloatingToolbarExitDirection;androidx.compose.material3.FloatingToolbarState?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun horizontalEnterTransition(androidx.compose.ui/Alignment.Horizontal, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation/EnterTransition // androidx.compose.material3/FloatingToolbarDefaults.horizontalEnterTransition|horizontalEnterTransition(androidx.compose.ui.Alignment.Horizontal;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun horizontalExitTransition(androidx.compose.ui/Alignment.Horizontal, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation/ExitTransition // androidx.compose.material3/FloatingToolbarDefaults.horizontalExitTransition|horizontalExitTransition(androidx.compose.ui.Alignment.Horizontal;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun standardFloatingToolbarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.standardFloatingToolbarColors|standardFloatingToolbarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun standardFloatingToolbarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.standardFloatingToolbarColors|standardFloatingToolbarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun verticalEnterTransition(androidx.compose.ui/Alignment.Vertical, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation/EnterTransition // androidx.compose.material3/FloatingToolbarDefaults.verticalEnterTransition|verticalEnterTransition(androidx.compose.ui.Alignment.Vertical;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun verticalExitTransition(androidx.compose.ui/Alignment.Vertical, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.animation/ExitTransition // androidx.compose.material3/FloatingToolbarDefaults.verticalExitTransition|verticalExitTransition(androidx.compose.ui.Alignment.Vertical;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun vibrantFloatingToolbarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.vibrantFloatingToolbarColors|vibrantFloatingToolbarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun vibrantFloatingToolbarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingToolbarColors // androidx.compose.material3/FloatingToolbarDefaults.vibrantFloatingToolbarColors|vibrantFloatingToolbarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/IconButtonDefaults { // androidx.compose.material3/IconButtonDefaults|null[0] final val SmallSelectedSquareShape // androidx.compose.material3/IconButtonDefaults.SmallSelectedSquareShape|{}SmallSelectedSquareShape[0] - final fun <get-SmallSelectedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.SmallSelectedSquareShape.<get-SmallSelectedSquareShape>|<get-SmallSelectedSquareShape>(){}[0] + final fun <get-SmallSelectedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.SmallSelectedSquareShape.<get-SmallSelectedSquareShape>|<get-SmallSelectedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeIconSize // androidx.compose.material3/IconButtonDefaults.extraLargeIconSize|{}extraLargeIconSize[0] final fun <get-extraLargeIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/IconButtonDefaults.extraLargeIconSize.<get-extraLargeIconSize>|<get-extraLargeIconSize>(){}[0] final val extraLargePressedShape // androidx.compose.material3/IconButtonDefaults.extraLargePressedShape|{}extraLargePressedShape[0] - final fun <get-extraLargePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(){}[0] + final fun <get-extraLargePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeRoundShape // androidx.compose.material3/IconButtonDefaults.extraLargeRoundShape|{}extraLargeRoundShape[0] - final fun <get-extraLargeRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeRoundShape.<get-extraLargeRoundShape>|<get-extraLargeRoundShape>(){}[0] + final fun <get-extraLargeRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeRoundShape.<get-extraLargeRoundShape>|<get-extraLargeRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeSelectedRoundShape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedRoundShape|{}extraLargeSelectedRoundShape[0] - final fun <get-extraLargeSelectedRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedRoundShape.<get-extraLargeSelectedRoundShape>|<get-extraLargeSelectedRoundShape>(){}[0] + final fun <get-extraLargeSelectedRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedRoundShape.<get-extraLargeSelectedRoundShape>|<get-extraLargeSelectedRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeSelectedSquareShape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedSquareShape|{}extraLargeSelectedSquareShape[0] - final fun <get-extraLargeSelectedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedSquareShape.<get-extraLargeSelectedSquareShape>|<get-extraLargeSelectedSquareShape>(){}[0] + final fun <get-extraLargeSelectedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSelectedSquareShape.<get-extraLargeSelectedSquareShape>|<get-extraLargeSelectedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeSquareShape // androidx.compose.material3/IconButtonDefaults.extraLargeSquareShape|{}extraLargeSquareShape[0] - final fun <get-extraLargeSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSquareShape.<get-extraLargeSquareShape>|<get-extraLargeSquareShape>(){}[0] + final fun <get-extraLargeSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraLargeSquareShape.<get-extraLargeSquareShape>|<get-extraLargeSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallIconSize // androidx.compose.material3/IconButtonDefaults.extraSmallIconSize|{}extraSmallIconSize[0] final fun <get-extraSmallIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/IconButtonDefaults.extraSmallIconSize.<get-extraSmallIconSize>|<get-extraSmallIconSize>(){}[0] final val extraSmallPressedShape // androidx.compose.material3/IconButtonDefaults.extraSmallPressedShape|{}extraSmallPressedShape[0] - final fun <get-extraSmallPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(){}[0] + final fun <get-extraSmallPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallRoundShape // androidx.compose.material3/IconButtonDefaults.extraSmallRoundShape|{}extraSmallRoundShape[0] - final fun <get-extraSmallRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallRoundShape.<get-extraSmallRoundShape>|<get-extraSmallRoundShape>(){}[0] + final fun <get-extraSmallRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallRoundShape.<get-extraSmallRoundShape>|<get-extraSmallRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallSelectedRoundShape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedRoundShape|{}extraSmallSelectedRoundShape[0] - final fun <get-extraSmallSelectedRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedRoundShape.<get-extraSmallSelectedRoundShape>|<get-extraSmallSelectedRoundShape>(){}[0] + final fun <get-extraSmallSelectedRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedRoundShape.<get-extraSmallSelectedRoundShape>|<get-extraSmallSelectedRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallSelectedSquareShape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedSquareShape|{}extraSmallSelectedSquareShape[0] - final fun <get-extraSmallSelectedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedSquareShape.<get-extraSmallSelectedSquareShape>|<get-extraSmallSelectedSquareShape>(){}[0] + final fun <get-extraSmallSelectedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSelectedSquareShape.<get-extraSmallSelectedSquareShape>|<get-extraSmallSelectedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallSquareShape // androidx.compose.material3/IconButtonDefaults.extraSmallSquareShape|{}extraSmallSquareShape[0] - final fun <get-extraSmallSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSquareShape.<get-extraSmallSquareShape>|<get-extraSmallSquareShape>(){}[0] + final fun <get-extraSmallSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.extraSmallSquareShape.<get-extraSmallSquareShape>|<get-extraSmallSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val filledShape // androidx.compose.material3/IconButtonDefaults.filledShape|{}filledShape[0] - final fun <get-filledShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.filledShape.<get-filledShape>|<get-filledShape>(){}[0] + final fun <get-filledShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.filledShape.<get-filledShape>|<get-filledShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeIconSize // androidx.compose.material3/IconButtonDefaults.largeIconSize|{}largeIconSize[0] final fun <get-largeIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/IconButtonDefaults.largeIconSize.<get-largeIconSize>|<get-largeIconSize>(){}[0] final val largePressedShape // androidx.compose.material3/IconButtonDefaults.largePressedShape|{}largePressedShape[0] - final fun <get-largePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(){}[0] + final fun <get-largePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeRoundShape // androidx.compose.material3/IconButtonDefaults.largeRoundShape|{}largeRoundShape[0] - final fun <get-largeRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeRoundShape.<get-largeRoundShape>|<get-largeRoundShape>(){}[0] + final fun <get-largeRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeRoundShape.<get-largeRoundShape>|<get-largeRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeSelectedRoundShape // androidx.compose.material3/IconButtonDefaults.largeSelectedRoundShape|{}largeSelectedRoundShape[0] - final fun <get-largeSelectedRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSelectedRoundShape.<get-largeSelectedRoundShape>|<get-largeSelectedRoundShape>(){}[0] + final fun <get-largeSelectedRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSelectedRoundShape.<get-largeSelectedRoundShape>|<get-largeSelectedRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeSelectedSquareShape // androidx.compose.material3/IconButtonDefaults.largeSelectedSquareShape|{}largeSelectedSquareShape[0] - final fun <get-largeSelectedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSelectedSquareShape.<get-largeSelectedSquareShape>|<get-largeSelectedSquareShape>(){}[0] + final fun <get-largeSelectedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSelectedSquareShape.<get-largeSelectedSquareShape>|<get-largeSelectedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeSquareShape // androidx.compose.material3/IconButtonDefaults.largeSquareShape|{}largeSquareShape[0] - final fun <get-largeSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSquareShape.<get-largeSquareShape>|<get-largeSquareShape>(){}[0] + final fun <get-largeSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.largeSquareShape.<get-largeSquareShape>|<get-largeSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumIconSize // androidx.compose.material3/IconButtonDefaults.mediumIconSize|{}mediumIconSize[0] final fun <get-mediumIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/IconButtonDefaults.mediumIconSize.<get-mediumIconSize>|<get-mediumIconSize>(){}[0] final val mediumPressedShape // androidx.compose.material3/IconButtonDefaults.mediumPressedShape|{}mediumPressedShape[0] - final fun <get-mediumPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(){}[0] + final fun <get-mediumPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumRoundShape // androidx.compose.material3/IconButtonDefaults.mediumRoundShape|{}mediumRoundShape[0] - final fun <get-mediumRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumRoundShape.<get-mediumRoundShape>|<get-mediumRoundShape>(){}[0] + final fun <get-mediumRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumRoundShape.<get-mediumRoundShape>|<get-mediumRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumSelectedRoundShape // androidx.compose.material3/IconButtonDefaults.mediumSelectedRoundShape|{}mediumSelectedRoundShape[0] - final fun <get-mediumSelectedRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSelectedRoundShape.<get-mediumSelectedRoundShape>|<get-mediumSelectedRoundShape>(){}[0] + final fun <get-mediumSelectedRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSelectedRoundShape.<get-mediumSelectedRoundShape>|<get-mediumSelectedRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumSelectedSquareShape // androidx.compose.material3/IconButtonDefaults.mediumSelectedSquareShape|{}mediumSelectedSquareShape[0] - final fun <get-mediumSelectedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSelectedSquareShape.<get-mediumSelectedSquareShape>|<get-mediumSelectedSquareShape>(){}[0] + final fun <get-mediumSelectedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSelectedSquareShape.<get-mediumSelectedSquareShape>|<get-mediumSelectedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumSquareShape // androidx.compose.material3/IconButtonDefaults.mediumSquareShape|{}mediumSquareShape[0] - final fun <get-mediumSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSquareShape.<get-mediumSquareShape>|<get-mediumSquareShape>(){}[0] + final fun <get-mediumSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.mediumSquareShape.<get-mediumSquareShape>|<get-mediumSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val outlinedShape // androidx.compose.material3/IconButtonDefaults.outlinedShape|{}outlinedShape[0] - final fun <get-outlinedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(){}[0] + final fun <get-outlinedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallIconSize // androidx.compose.material3/IconButtonDefaults.smallIconSize|{}smallIconSize[0] final fun <get-smallIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/IconButtonDefaults.smallIconSize.<get-smallIconSize>|<get-smallIconSize>(){}[0] final val smallPressedShape // androidx.compose.material3/IconButtonDefaults.smallPressedShape|{}smallPressedShape[0] - final fun <get-smallPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallPressedShape.<get-smallPressedShape>|<get-smallPressedShape>(){}[0] + final fun <get-smallPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallPressedShape.<get-smallPressedShape>|<get-smallPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallRoundShape // androidx.compose.material3/IconButtonDefaults.smallRoundShape|{}smallRoundShape[0] - final fun <get-smallRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallRoundShape.<get-smallRoundShape>|<get-smallRoundShape>(){}[0] + final fun <get-smallRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallRoundShape.<get-smallRoundShape>|<get-smallRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallSelectedRoundShape // androidx.compose.material3/IconButtonDefaults.smallSelectedRoundShape|{}smallSelectedRoundShape[0] - final fun <get-smallSelectedRoundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallSelectedRoundShape.<get-smallSelectedRoundShape>|<get-smallSelectedRoundShape>(){}[0] + final fun <get-smallSelectedRoundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallSelectedRoundShape.<get-smallSelectedRoundShape>|<get-smallSelectedRoundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val smallSquareShape // androidx.compose.material3/IconButtonDefaults.smallSquareShape|{}smallSquareShape[0] - final fun <get-smallSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallSquareShape.<get-smallSquareShape>|<get-smallSquareShape>(){}[0] + final fun <get-smallSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.smallSquareShape.<get-smallSquareShape>|<get-smallSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val standardShape // androidx.compose.material3/IconButtonDefaults.standardShape|{}standardShape[0] - final fun <get-standardShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.standardShape.<get-standardShape>|<get-standardShape>(){}[0] + final fun <get-standardShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/IconButtonDefaults.standardShape.<get-standardShape>|<get-standardShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun extraLargeContainerSize(androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption = ...): androidx.compose.ui.unit/DpSize // androidx.compose.material3/IconButtonDefaults.extraLargeContainerSize|extraLargeContainerSize(androidx.compose.material3.IconButtonDefaults.IconButtonWidthOption){}[0] final fun extraSmallContainerSize(androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption = ...): androidx.compose.ui.unit/DpSize // androidx.compose.material3/IconButtonDefaults.extraSmallContainerSize|extraSmallContainerSize(androidx.compose.material3.IconButtonDefaults.IconButtonWidthOption){}[0] - final fun filledIconButtonColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconButtonColors|filledIconButtonColors(){}[0] - final fun filledIconButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconButtonColors|filledIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun filledIconToggleButtonColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconToggleButtonColors|filledIconToggleButtonColors(){}[0] - final fun filledIconToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconToggleButtonColors|filledIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun filledTonalIconButtonColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconButtonColors|filledTonalIconButtonColors(){}[0] - final fun filledTonalIconButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconButtonColors|filledTonalIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun filledTonalIconToggleButtonColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconToggleButtonColors|filledTonalIconToggleButtonColors(){}[0] - final fun filledTonalIconToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconToggleButtonColors|filledTonalIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun iconButtonColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonColors|iconButtonColors(){}[0] - final fun iconButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonColors|iconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun iconButtonVibrantColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonVibrantColors|iconButtonVibrantColors(){}[0] - final fun iconButtonVibrantColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonVibrantColors|iconButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun iconToggleButtonColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonColors|iconToggleButtonColors(){}[0] - final fun iconToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonColors|iconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun iconToggleButtonVibrantColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonVibrantColors|iconToggleButtonVibrantColors(){}[0] - final fun iconToggleButtonVibrantColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonVibrantColors|iconToggleButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun filledIconButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconButtonColors|filledIconButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filledIconButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconButtonColors|filledIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filledIconToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconToggleButtonColors|filledIconToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filledIconToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledIconToggleButtonColors|filledIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filledTonalIconButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconButtonColors|filledTonalIconButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filledTonalIconButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconButtonColors|filledTonalIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun filledTonalIconToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconToggleButtonColors|filledTonalIconToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun filledTonalIconToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.filledTonalIconToggleButtonColors|filledTonalIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun iconButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonColors|iconButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun iconButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonColors|iconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun iconButtonVibrantColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonVibrantColors|iconButtonVibrantColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun iconButtonVibrantColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.iconButtonVibrantColors|iconButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun iconToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonColors|iconToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun iconToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonColors|iconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun iconToggleButtonVibrantColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonVibrantColors|iconToggleButtonVibrantColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun iconToggleButtonVibrantColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.iconToggleButtonVibrantColors|iconToggleButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun largeContainerSize(androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption = ...): androidx.compose.ui.unit/DpSize // androidx.compose.material3/IconButtonDefaults.largeContainerSize|largeContainerSize(androidx.compose.material3.IconButtonDefaults.IconButtonWidthOption){}[0] final fun mediumContainerSize(androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption = ...): androidx.compose.ui.unit/DpSize // androidx.compose.material3/IconButtonDefaults.mediumContainerSize|mediumContainerSize(androidx.compose.material3.IconButtonDefaults.IconButtonWidthOption){}[0] - final fun outlinedIconButtonBorder(kotlin/Boolean): androidx.compose.foundation/BorderStroke // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonBorder|outlinedIconButtonBorder(kotlin.Boolean){}[0] - final fun outlinedIconButtonColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonColors|outlinedIconButtonColors(){}[0] - final fun outlinedIconButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonColors|outlinedIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedIconButtonVibrantBorder(kotlin/Boolean): androidx.compose.foundation/BorderStroke // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantBorder|outlinedIconButtonVibrantBorder(kotlin.Boolean){}[0] - final fun outlinedIconButtonVibrantColors(): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantColors|outlinedIconButtonVibrantColors(){}[0] - final fun outlinedIconButtonVibrantColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantColors|outlinedIconButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedIconToggleButtonBorder(kotlin/Boolean, kotlin/Boolean): androidx.compose.foundation/BorderStroke? // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonBorder|outlinedIconToggleButtonBorder(kotlin.Boolean;kotlin.Boolean){}[0] - final fun outlinedIconToggleButtonColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonColors|outlinedIconToggleButtonColors(){}[0] - final fun outlinedIconToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonColors|outlinedIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedIconToggleButtonVibrantBorder(kotlin/Boolean, kotlin/Boolean): androidx.compose.foundation/BorderStroke? // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantBorder|outlinedIconToggleButtonVibrantBorder(kotlin.Boolean;kotlin.Boolean){}[0] - final fun outlinedIconToggleButtonVibrantColors(): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantColors|outlinedIconToggleButtonVibrantColors(){}[0] - final fun outlinedIconToggleButtonVibrantColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantColors|outlinedIconToggleButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun shapes(): androidx.compose.material3/IconButtonShapes // androidx.compose.material3/IconButtonDefaults.shapes|shapes(){}[0] - final fun shapes(androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ...): androidx.compose.material3/IconButtonShapes // androidx.compose.material3/IconButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?){}[0] + final fun outlinedIconButtonBorder(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonBorder|outlinedIconButtonBorder(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonColors|outlinedIconButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonColors|outlinedIconButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedIconButtonVibrantBorder(kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantBorder|outlinedIconButtonVibrantBorder(kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconButtonVibrantColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantColors|outlinedIconButtonVibrantColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconButtonVibrantColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconButtonVibrantColors|outlinedIconButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedIconToggleButtonBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke? // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonBorder|outlinedIconToggleButtonBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonColors|outlinedIconToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonColors|outlinedIconToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedIconToggleButtonVibrantBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation/BorderStroke? // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantBorder|outlinedIconToggleButtonVibrantBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconToggleButtonVibrantColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantColors|outlinedIconToggleButtonVibrantColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedIconToggleButtonVibrantColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonColors // androidx.compose.material3/IconButtonDefaults.outlinedIconToggleButtonVibrantColors|outlinedIconToggleButtonVibrantColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapes(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconButtonShapes // androidx.compose.material3/IconButtonDefaults.shapes|shapes(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun shapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconButtonShapes // androidx.compose.material3/IconButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun smallContainerSize(androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption = ...): androidx.compose.ui.unit/DpSize // androidx.compose.material3/IconButtonDefaults.smallContainerSize|smallContainerSize(androidx.compose.material3.IconButtonDefaults.IconButtonWidthOption){}[0] - final fun toggleableShapes(): androidx.compose.material3/IconToggleButtonShapes // androidx.compose.material3/IconButtonDefaults.toggleableShapes|toggleableShapes(){}[0] - final fun toggleableShapes(androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ...): androidx.compose.material3/IconToggleButtonShapes // androidx.compose.material3/IconButtonDefaults.toggleableShapes|toggleableShapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?){}[0] + final fun toggleableShapes(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/IconToggleButtonShapes // androidx.compose.material3/IconButtonDefaults.toggleableShapes|toggleableShapes(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun toggleableShapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/IconToggleButtonShapes // androidx.compose.material3/IconButtonDefaults.toggleableShapes|toggleableShapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final value class IconButtonWidthOption { // androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption|null[0] final fun equals(kotlin/Any?): kotlin/Boolean // androidx.compose.material3/IconButtonDefaults.IconButtonWidthOption.equals|equals(kotlin.Any?){}[0] @@ -2970,26 +2970,26 @@ final val IconSize // androidx.compose.material3/InputChipDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/InputChipDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] final val shape // androidx.compose.material3/InputChipDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/InputChipDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/InputChipDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun inputChipBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/InputChipDefaults.inputChipBorder|inputChipBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun inputChipColors(): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/InputChipDefaults.inputChipColors|inputChipColors(){}[0] - final fun inputChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/InputChipDefaults.inputChipColors|inputChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun inputChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/InputChipDefaults.inputChipElevation|inputChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun inputChipBorder(kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/InputChipDefaults.inputChipBorder|inputChipBorder(kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun inputChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/InputChipDefaults.inputChipColors|inputChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun inputChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipColors // androidx.compose.material3/InputChipDefaults.inputChipColors|inputChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun inputChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SelectableChipElevation // androidx.compose.material3/InputChipDefaults.inputChipElevation|inputChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ListItemDefaults { // androidx.compose.material3/ListItemDefaults|null[0] final val Elevation // androidx.compose.material3/ListItemDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/ListItemDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val containerColor // androidx.compose.material3/ListItemDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ListItemDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ListItemDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val contentColor // androidx.compose.material3/ListItemDefaults.contentColor|{}contentColor[0] - final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ListItemDefaults.contentColor.<get-contentColor>|<get-contentColor>(){}[0] + final fun <get-contentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ListItemDefaults.contentColor.<get-contentColor>|<get-contentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/ListItemDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ListItemDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ListItemDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun colors(): androidx.compose.material3/ListItemColors // androidx.compose.material3/ListItemDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ListItemColors // androidx.compose.material3/ListItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ListItemColors // androidx.compose.material3/ListItemDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ListItemColors // androidx.compose.material3/ListItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/LoadingIndicatorDefaults { // androidx.compose.material3/LoadingIndicatorDefaults|null[0] @@ -3004,26 +3004,26 @@ final val IndicatorSize // androidx.compose.material3/LoadingIndicatorDefaults.IndicatorSize|{}IndicatorSize[0] final fun <get-IndicatorSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/LoadingIndicatorDefaults.IndicatorSize.<get-IndicatorSize>|<get-IndicatorSize>(){}[0] final val containedContainerColor // androidx.compose.material3/LoadingIndicatorDefaults.containedContainerColor|{}containedContainerColor[0] - final fun <get-containedContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.containedContainerColor.<get-containedContainerColor>|<get-containedContainerColor>(){}[0] + final fun <get-containedContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.containedContainerColor.<get-containedContainerColor>|<get-containedContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val containedIndicatorColor // androidx.compose.material3/LoadingIndicatorDefaults.containedIndicatorColor|{}containedIndicatorColor[0] - final fun <get-containedIndicatorColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.containedIndicatorColor.<get-containedIndicatorColor>|<get-containedIndicatorColor>(){}[0] + final fun <get-containedIndicatorColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.containedIndicatorColor.<get-containedIndicatorColor>|<get-containedIndicatorColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val containerShape // androidx.compose.material3/LoadingIndicatorDefaults.containerShape|{}containerShape[0] - final fun <get-containerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/LoadingIndicatorDefaults.containerShape.<get-containerShape>|<get-containerShape>(){}[0] + final fun <get-containerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/LoadingIndicatorDefaults.containerShape.<get-containerShape>|<get-containerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val indicatorColor // androidx.compose.material3/LoadingIndicatorDefaults.indicatorColor|{}indicatorColor[0] - final fun <get-indicatorColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(){}[0] + final fun <get-indicatorColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/LoadingIndicatorDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/MaterialTheme { // androidx.compose.material3/MaterialTheme|null[0] final val LocalMotionScheme // androidx.compose.material3/MaterialTheme.LocalMotionScheme|{}LocalMotionScheme[0] final fun <get-LocalMotionScheme>(): androidx.compose.runtime/CompositionLocal<androidx.compose.material3/MotionScheme> // androidx.compose.material3/MaterialTheme.LocalMotionScheme.<get-LocalMotionScheme>|<get-LocalMotionScheme>(){}[0] final val colorScheme // androidx.compose.material3/MaterialTheme.colorScheme|{}colorScheme[0] - final fun <get-colorScheme>(): androidx.compose.material3/ColorScheme // androidx.compose.material3/MaterialTheme.colorScheme.<get-colorScheme>|<get-colorScheme>(){}[0] + final fun <get-colorScheme>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ColorScheme // androidx.compose.material3/MaterialTheme.colorScheme.<get-colorScheme>|<get-colorScheme>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val motionScheme // androidx.compose.material3/MaterialTheme.motionScheme|{}motionScheme[0] - final fun <get-motionScheme>(): androidx.compose.material3/MotionScheme // androidx.compose.material3/MaterialTheme.motionScheme.<get-motionScheme>|<get-motionScheme>(){}[0] + final fun <get-motionScheme>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/MotionScheme // androidx.compose.material3/MaterialTheme.motionScheme.<get-motionScheme>|<get-motionScheme>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shapes // androidx.compose.material3/MaterialTheme.shapes|{}shapes[0] - final fun <get-shapes>(): androidx.compose.material3/Shapes // androidx.compose.material3/MaterialTheme.shapes.<get-shapes>|<get-shapes>(){}[0] + final fun <get-shapes>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/Shapes // androidx.compose.material3/MaterialTheme.shapes.<get-shapes>|<get-shapes>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val typography // androidx.compose.material3/MaterialTheme.typography|{}typography[0] - final fun <get-typography>(): androidx.compose.material3/Typography // androidx.compose.material3/MaterialTheme.typography.<get-typography>|<get-typography>(){}[0] + final fun <get-typography>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/Typography // androidx.compose.material3/MaterialTheme.typography.<get-typography>|<get-typography>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/MenuDefaults { // androidx.compose.material3/MenuDefaults|null[0] @@ -3034,12 +3034,12 @@ final val TonalElevation // androidx.compose.material3/MenuDefaults.TonalElevation|{}TonalElevation[0] final fun <get-TonalElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/MenuDefaults.TonalElevation.<get-TonalElevation>|<get-TonalElevation>(){}[0] final val containerColor // androidx.compose.material3/MenuDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/MenuDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/MenuDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/MenuDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/MenuDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/MenuDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun itemColors(): androidx.compose.material3/MenuItemColors // androidx.compose.material3/MenuDefaults.itemColors|itemColors(){}[0] - final fun itemColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/MenuItemColors // androidx.compose.material3/MenuDefaults.itemColors|itemColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun itemColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/MenuItemColors // androidx.compose.material3/MenuDefaults.itemColors|itemColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun itemColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/MenuItemColors // androidx.compose.material3/MenuDefaults.itemColors|itemColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ModalBottomSheetDefaults { // androidx.compose.material3/ModalBottomSheetDefaults|null[0] @@ -3056,35 +3056,35 @@ final val Elevation // androidx.compose.material3/NavigationBarDefaults.Elevation|{}Elevation[0] final fun <get-Elevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/NavigationBarDefaults.Elevation.<get-Elevation>|<get-Elevation>(){}[0] final val containerColor // androidx.compose.material3/NavigationBarDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/NavigationBarDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/NavigationBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/NavigationBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/NavigationBarItemDefaults { // androidx.compose.material3/NavigationBarItemDefaults|null[0] - final fun colors(): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationBarItemColors // androidx.compose.material3/NavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/NavigationDrawerItemDefaults { // androidx.compose.material3/NavigationDrawerItemDefaults|null[0] final val ItemPadding // androidx.compose.material3/NavigationDrawerItemDefaults.ItemPadding|{}ItemPadding[0] final fun <get-ItemPadding>(): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/NavigationDrawerItemDefaults.ItemPadding.<get-ItemPadding>|<get-ItemPadding>(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationDrawerItemColors // androidx.compose.material3/NavigationDrawerItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationDrawerItemColors // androidx.compose.material3/NavigationDrawerItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/NavigationRailDefaults { // androidx.compose.material3/NavigationRailDefaults|null[0] final val ContainerColor // androidx.compose.material3/NavigationRailDefaults.ContainerColor|{}ContainerColor[0] - final fun <get-ContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationRailDefaults.ContainerColor.<get-ContainerColor>|<get-ContainerColor>(){}[0] + final fun <get-ContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/NavigationRailDefaults.ContainerColor.<get-ContainerColor>|<get-ContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/NavigationRailDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/NavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/NavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/NavigationRailItemDefaults { // androidx.compose.material3/NavigationRailItemDefaults|null[0] - final fun colors(): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationRailItemColors // androidx.compose.material3/NavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/OutlinedTextFieldDefaults { // androidx.compose.material3/OutlinedTextFieldDefaults|null[0] @@ -3097,15 +3097,15 @@ final val UnfocusedBorderThickness // androidx.compose.material3/OutlinedTextFieldDefaults.UnfocusedBorderThickness|{}UnfocusedBorderThickness[0] final fun <get-UnfocusedBorderThickness>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/OutlinedTextFieldDefaults.UnfocusedBorderThickness.<get-UnfocusedBorderThickness>|<get-UnfocusedBorderThickness>(){}[0] final val shape // androidx.compose.material3/OutlinedTextFieldDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/OutlinedTextFieldDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/OutlinedTextFieldDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun Container(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.ui/Modifier = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/OutlinedTextFieldDefaults.Container|Container(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.ui.Modifier;androidx.compose.material3.TextFieldColors;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun ContainerBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/OutlinedTextFieldDefaults.ContainerBox|ContainerBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun DecorationBox(kotlin/String, kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function0<kotlin/Unit> = ...) // androidx.compose.material3/OutlinedTextFieldDefaults.DecorationBox|DecorationBox(kotlin.String;kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function0<kotlin.Unit>){}[0] - final fun colors(): androidx.compose.material3/TextFieldColors // androidx.compose.material3/OutlinedTextFieldDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/OutlinedTextFieldDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun Container(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.ui/Modifier?, androidx.compose.material3/TextFieldColors?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextFieldDefaults.Container|Container(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.ui.Modifier?;androidx.compose.material3.TextFieldColors?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun ContainerBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextFieldDefaults.ContainerBox|ContainerBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DecorationBox(kotlin/String, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextFieldDefaults.DecorationBox|DecorationBox(kotlin.String;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/OutlinedTextFieldDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/OutlinedTextFieldDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun contentPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/OutlinedTextFieldDefaults.contentPadding|contentPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun decorator(androidx.compose.foundation.text.input/TextFieldState, kotlin/Boolean, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function0<kotlin/Unit> = ...): androidx.compose.foundation.text.input/TextFieldDecorator // androidx.compose.material3/OutlinedTextFieldDefaults.decorator|decorator(androidx.compose.foundation.text.input.TextFieldState;kotlin.Boolean;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function0<kotlin.Unit>){}[0] + final fun decorator(androidx.compose.foundation.text.input/TextFieldState, kotlin/Boolean, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.foundation.text.input/TextFieldDecorator // androidx.compose.material3/OutlinedTextFieldDefaults.decorator|decorator(androidx.compose.foundation.text.input.TextFieldState;kotlin.Boolean;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ProgressIndicatorDefaults { // androidx.compose.material3/ProgressIndicatorDefaults|null[0] @@ -3126,24 +3126,24 @@ final val ProgressAnimationSpec // androidx.compose.material3/ProgressIndicatorDefaults.ProgressAnimationSpec|{}ProgressAnimationSpec[0] final fun <get-ProgressAnimationSpec>(): androidx.compose.animation.core/SpringSpec<kotlin/Float> // androidx.compose.material3/ProgressIndicatorDefaults.ProgressAnimationSpec.<get-ProgressAnimationSpec>|<get-ProgressAnimationSpec>(){}[0] final val circularColor // androidx.compose.material3/ProgressIndicatorDefaults.circularColor|{}circularColor[0] - final fun <get-circularColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularColor.<get-circularColor>|<get-circularColor>(){}[0] + final fun <get-circularColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularColor.<get-circularColor>|<get-circularColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val circularDeterminateTrackColor // androidx.compose.material3/ProgressIndicatorDefaults.circularDeterminateTrackColor|{}circularDeterminateTrackColor[0] - final fun <get-circularDeterminateTrackColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularDeterminateTrackColor.<get-circularDeterminateTrackColor>|<get-circularDeterminateTrackColor>(){}[0] + final fun <get-circularDeterminateTrackColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularDeterminateTrackColor.<get-circularDeterminateTrackColor>|<get-circularDeterminateTrackColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val circularIndeterminateTrackColor // androidx.compose.material3/ProgressIndicatorDefaults.circularIndeterminateTrackColor|{}circularIndeterminateTrackColor[0] - final fun <get-circularIndeterminateTrackColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularIndeterminateTrackColor.<get-circularIndeterminateTrackColor>|<get-circularIndeterminateTrackColor>(){}[0] + final fun <get-circularIndeterminateTrackColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularIndeterminateTrackColor.<get-circularIndeterminateTrackColor>|<get-circularIndeterminateTrackColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val circularTrackColor // androidx.compose.material3/ProgressIndicatorDefaults.circularTrackColor|{}circularTrackColor[0] - final fun <get-circularTrackColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularTrackColor.<get-circularTrackColor>|<get-circularTrackColor>(){}[0] + final fun <get-circularTrackColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.circularTrackColor.<get-circularTrackColor>|<get-circularTrackColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val linearColor // androidx.compose.material3/ProgressIndicatorDefaults.linearColor|{}linearColor[0] - final fun <get-linearColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.linearColor.<get-linearColor>|<get-linearColor>(){}[0] + final fun <get-linearColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.linearColor.<get-linearColor>|<get-linearColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val linearTrackColor // androidx.compose.material3/ProgressIndicatorDefaults.linearTrackColor|{}linearTrackColor[0] - final fun <get-linearTrackColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.linearTrackColor.<get-linearTrackColor>|<get-linearTrackColor>(){}[0] + final fun <get-linearTrackColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ProgressIndicatorDefaults.linearTrackColor.<get-linearTrackColor>|<get-linearTrackColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun drawStopIndicator(androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap) // androidx.compose.material3/ProgressIndicatorDefaults.drawStopIndicator|drawStopIndicator(androidx.compose.ui.graphics.drawscope.DrawScope;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] } final object androidx.compose.material3/RadioButtonDefaults { // androidx.compose.material3/RadioButtonDefaults|null[0] - final fun colors(): androidx.compose.material3/RadioButtonColors // androidx.compose.material3/RadioButtonDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/RadioButtonColors // androidx.compose.material3/RadioButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/RadioButtonColors // androidx.compose.material3/RadioButtonDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/RadioButtonColors // androidx.compose.material3/RadioButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/RippleDefaults { // androidx.compose.material3/RippleDefaults|null[0] @@ -3153,7 +3153,7 @@ final object androidx.compose.material3/ScaffoldDefaults { // androidx.compose.material3/ScaffoldDefaults|null[0] final val contentWindowInsets // androidx.compose.material3/ScaffoldDefaults.contentWindowInsets|{}contentWindowInsets[0] - final fun <get-contentWindowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets>|<get-contentWindowInsets>(){}[0] + final fun <get-contentWindowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/ScaffoldDefaults.contentWindowInsets.<get-contentWindowInsets>|<get-contentWindowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/SearchBarDefaults { // androidx.compose.material3/SearchBarDefaults|null[0] @@ -3166,25 +3166,25 @@ final val TonalElevation // androidx.compose.material3/SearchBarDefaults.TonalElevation|{}TonalElevation[0] final fun <get-TonalElevation>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SearchBarDefaults.TonalElevation.<get-TonalElevation>|<get-TonalElevation>(){}[0] final val dockedShape // androidx.compose.material3/SearchBarDefaults.dockedShape|{}dockedShape[0] - final fun <get-dockedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.dockedShape.<get-dockedShape>|<get-dockedShape>(){}[0] + final fun <get-dockedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.dockedShape.<get-dockedShape>|<get-dockedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val fullScreenShape // androidx.compose.material3/SearchBarDefaults.fullScreenShape|{}fullScreenShape[0] - final fun <get-fullScreenShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.fullScreenShape.<get-fullScreenShape>|<get-fullScreenShape>(){}[0] + final fun <get-fullScreenShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.fullScreenShape.<get-fullScreenShape>|<get-fullScreenShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val fullScreenWindowInsets // androidx.compose.material3/SearchBarDefaults.fullScreenWindowInsets|{}fullScreenWindowInsets[0] - final fun <get-fullScreenWindowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/SearchBarDefaults.fullScreenWindowInsets.<get-fullScreenWindowInsets>|<get-fullScreenWindowInsets>(){}[0] + final fun <get-fullScreenWindowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/SearchBarDefaults.fullScreenWindowInsets.<get-fullScreenWindowInsets>|<get-fullScreenWindowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val inputFieldShape // androidx.compose.material3/SearchBarDefaults.inputFieldShape|{}inputFieldShape[0] - final fun <get-inputFieldShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.inputFieldShape.<get-inputFieldShape>|<get-inputFieldShape>(){}[0] + final fun <get-inputFieldShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SearchBarDefaults.inputFieldShape.<get-inputFieldShape>|<get-inputFieldShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/SearchBarDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/SearchBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/SearchBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun InputField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.material3/SearchBarState, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.material3.SearchBarState;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] - final fun InputField(androidx.compose.foundation.text.input/TextFieldState, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(androidx.compose.foundation.text.input.TextFieldState;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] - final fun InputField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SearchBarColors // androidx.compose.material3/SearchBarDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/TextFieldColors = ...): androidx.compose.material3/SearchBarColors // androidx.compose.material3/SearchBarDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.TextFieldColors){}[0] - final fun enterAlwaysSearchBarScrollBehavior(kotlin/Float = ..., kotlin/Float = ..., kotlin/Function0<kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float> = ..., kotlin/Boolean = ...): androidx.compose.material3/SearchBarScrollBehavior // androidx.compose.material3/SearchBarDefaults.enterAlwaysSearchBarScrollBehavior|enterAlwaysSearchBarScrollBehavior(kotlin.Float;kotlin.Float;kotlin.Function0<kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>;kotlin.Boolean){}[0] - final fun inputFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun inputFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun inputFieldColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun InputField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.material3/SearchBarState, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.material3.SearchBarState;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun InputField(androidx.compose.foundation.text.input/TextFieldState, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(androidx.compose.foundation.text.input.TextFieldState;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun InputField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBarDefaults.InputField|InputField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SearchBarColors // androidx.compose.material3/SearchBarDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SearchBarColors // androidx.compose.material3/SearchBarDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun enterAlwaysSearchBarScrollBehavior(kotlin/Float, kotlin/Float, kotlin/Function0<kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SearchBarScrollBehavior // androidx.compose.material3/SearchBarDefaults.enterAlwaysSearchBarScrollBehavior|enterAlwaysSearchBarScrollBehavior(kotlin.Float;kotlin.Float;kotlin.Function0<kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun inputFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun inputFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun inputFieldColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/SearchBarDefaults.inputFieldColors|inputFieldColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/SegmentedButtonDefaults { // androidx.compose.material3/SegmentedButtonDefaults|null[0] @@ -3195,14 +3195,14 @@ final val IconSize // androidx.compose.material3/SegmentedButtonDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SegmentedButtonDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] final val baseShape // androidx.compose.material3/SegmentedButtonDefaults.baseShape|{}baseShape[0] - final fun <get-baseShape>(): androidx.compose.foundation.shape/CornerBasedShape // androidx.compose.material3/SegmentedButtonDefaults.baseShape.<get-baseShape>|<get-baseShape>(){}[0] + final fun <get-baseShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.shape/CornerBasedShape // androidx.compose.material3/SegmentedButtonDefaults.baseShape.<get-baseShape>|<get-baseShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun ActiveIcon() // androidx.compose.material3/SegmentedButtonDefaults.ActiveIcon|ActiveIcon(){}[0] - final fun Icon(kotlin/Boolean, kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>? = ...) // androidx.compose.material3/SegmentedButtonDefaults.Icon|Icon(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>?){}[0] + final fun ActiveIcon(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/SegmentedButtonDefaults.ActiveIcon|ActiveIcon(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun Icon(kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SegmentedButtonDefaults.Icon|Icon(kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun borderStroke(androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/SegmentedButtonDefaults.borderStroke|borderStroke(androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun colors(): androidx.compose.material3/SegmentedButtonColors // androidx.compose.material3/SegmentedButtonDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SegmentedButtonColors // androidx.compose.material3/SegmentedButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun itemShape(kotlin/Int, kotlin/Int, androidx.compose.foundation.shape/CornerBasedShape = ...): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SegmentedButtonDefaults.itemShape|itemShape(kotlin.Int;kotlin.Int;androidx.compose.foundation.shape.CornerBasedShape){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SegmentedButtonColors // androidx.compose.material3/SegmentedButtonDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SegmentedButtonColors // androidx.compose.material3/SegmentedButtonDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun itemShape(kotlin/Int, kotlin/Int, androidx.compose.foundation.shape/CornerBasedShape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SegmentedButtonDefaults.itemShape|itemShape(kotlin.Int;kotlin.Int;androidx.compose.foundation.shape.CornerBasedShape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ShapeDefaults { // androidx.compose.material3/ShapeDefaults|null[0] @@ -3228,16 +3228,16 @@ final val arrangement // androidx.compose.material3/ShortNavigationBarDefaults.arrangement|{}arrangement[0] final fun <get-arrangement>(): androidx.compose.material3/ShortNavigationBarArrangement // androidx.compose.material3/ShortNavigationBarDefaults.arrangement.<get-arrangement>|<get-arrangement>(){}[0] final val containerColor // androidx.compose.material3/ShortNavigationBarDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val contentColor // androidx.compose.material3/ShortNavigationBarDefaults.contentColor|{}contentColor[0] - final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarDefaults.contentColor.<get-contentColor>|<get-contentColor>(){}[0] + final fun <get-contentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/ShortNavigationBarDefaults.contentColor.<get-contentColor>|<get-contentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/ShortNavigationBarDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/ShortNavigationBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/ShortNavigationBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/ShortNavigationBarItemDefaults { // androidx.compose.material3/ShortNavigationBarItemDefaults|null[0] - final fun colors(): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/ShortNavigationBarItemDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/ShortNavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/ShortNavigationBarItemDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/ShortNavigationBarItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/SliderDefaults { // androidx.compose.material3/SliderDefaults|null[0] @@ -3247,32 +3247,32 @@ final fun <get-TrackStopIndicatorSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SliderDefaults.TrackStopIndicatorSize.<get-TrackStopIndicatorSize>|<get-TrackStopIndicatorSize>(){}[0] final fun (androidx.compose.ui.graphics.drawscope/DrawScope).drawStopIndicator(androidx.compose.ui.geometry/Offset, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color) // androidx.compose.material3/SliderDefaults.drawStopIndicator|drawStopIndicator@androidx.compose.ui.graphics.drawscope.DrawScope(androidx.compose.ui.geometry.Offset;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] - final fun CenteredTrack(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ..., kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SliderDefaults.CenteredTrack|CenteredTrack(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun Thumb(androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SliderColors = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/DpSize = ...) // androidx.compose.material3/SliderDefaults.Thumb|Thumb(androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;androidx.compose.material3.SliderColors;kotlin.Boolean;androidx.compose.ui.unit.DpSize){}[0] - final fun Thumb(androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SliderColors = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/DpSize = ...) // androidx.compose.material3/SliderDefaults.Thumb|Thumb(androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.Modifier;androidx.compose.material3.SliderColors;kotlin.Boolean;androidx.compose.ui.unit.DpSize){}[0] - final fun Track(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SliderColors = ..., kotlin/Boolean = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier;androidx.compose.material3.SliderColors;kotlin.Boolean){}[0] - final fun Track(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ..., kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun Track(androidx.compose.material3/SliderPositions, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SliderColors = ..., kotlin/Boolean = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderPositions;androidx.compose.ui.Modifier;androidx.compose.material3.SliderColors;kotlin.Boolean){}[0] - final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ..., kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SliderColors = ..., kotlin/Boolean = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;androidx.compose.material3.SliderColors;kotlin.Boolean){}[0] - final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>? = ..., kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun colors(): androidx.compose.material3/SliderColors // androidx.compose.material3/SliderDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SliderColors // androidx.compose.material3/SliderDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun CenteredTrack(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>?, kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.CenteredTrack|CenteredTrack(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Thumb(androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, androidx.compose.material3/SliderColors?, kotlin/Boolean, androidx.compose.ui.unit/DpSize, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Thumb|Thumb(androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;androidx.compose.material3.SliderColors?;kotlin.Boolean;androidx.compose.ui.unit.DpSize;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Thumb(androidx.compose.foundation.interaction/MutableInteractionSource, androidx.compose.ui/Modifier?, androidx.compose.material3/SliderColors?, kotlin/Boolean, androidx.compose.ui.unit/DpSize, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Thumb|Thumb(androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.ui.Modifier?;androidx.compose.material3.SliderColors?;kotlin.Boolean;androidx.compose.ui.unit.DpSize;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier?, androidx.compose.material3/SliderColors?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier?;androidx.compose.material3.SliderColors?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>?, kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/SliderPositions, androidx.compose.ui/Modifier?, androidx.compose.material3/SliderColors?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderPositions;androidx.compose.ui.Modifier?;androidx.compose.material3.SliderColors?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>?, kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, androidx.compose.material3/SliderColors?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;androidx.compose.material3.SliderColors?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Track(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, kotlin/Function2<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>?, kotlin/Function3<androidx.compose.ui.graphics.drawscope/DrawScope, androidx.compose.ui.geometry/Offset, androidx.compose.ui.graphics/Color, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SliderDefaults.Track|Track(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;kotlin.Function2<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>?;kotlin.Function3<androidx.compose.ui.graphics.drawscope.DrawScope,androidx.compose.ui.geometry.Offset,androidx.compose.ui.graphics.Color,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SliderColors // androidx.compose.material3/SliderDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SliderColors // androidx.compose.material3/SliderDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/SnackbarDefaults { // androidx.compose.material3/SnackbarDefaults|null[0] final val actionColor // androidx.compose.material3/SnackbarDefaults.actionColor|{}actionColor[0] - final fun <get-actionColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.actionColor.<get-actionColor>|<get-actionColor>(){}[0] + final fun <get-actionColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.actionColor.<get-actionColor>|<get-actionColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val actionContentColor // androidx.compose.material3/SnackbarDefaults.actionContentColor|{}actionContentColor[0] - final fun <get-actionContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.actionContentColor.<get-actionContentColor>|<get-actionContentColor>(){}[0] + final fun <get-actionContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.actionContentColor.<get-actionContentColor>|<get-actionContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val color // androidx.compose.material3/SnackbarDefaults.color|{}color[0] - final fun <get-color>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.color.<get-color>|<get-color>(){}[0] + final fun <get-color>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.color.<get-color>|<get-color>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val contentColor // androidx.compose.material3/SnackbarDefaults.contentColor|{}contentColor[0] - final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.contentColor.<get-contentColor>|<get-contentColor>(){}[0] + final fun <get-contentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.contentColor.<get-contentColor>|<get-contentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val dismissActionContentColor // androidx.compose.material3/SnackbarDefaults.dismissActionContentColor|{}dismissActionContentColor[0] - final fun <get-dismissActionContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.dismissActionContentColor.<get-dismissActionContentColor>|<get-dismissActionContentColor>(){}[0] + final fun <get-dismissActionContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/SnackbarDefaults.dismissActionContentColor.<get-dismissActionContentColor>|<get-dismissActionContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/SnackbarDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SnackbarDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SnackbarDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/SplitButtonDefaults { // androidx.compose.material3/SplitButtonDefaults|null[0] @@ -3351,23 +3351,23 @@ final val TrailingIconSize // androidx.compose.material3/SplitButtonDefaults.TrailingIconSize|{}TrailingIconSize[0] final fun <get-TrailingIconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SplitButtonDefaults.TrailingIconSize.<get-TrailingIconSize>|<get-TrailingIconSize>(){}[0] - final fun ElevatedLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.ElevatedLeadingButton|ElevatedLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun ElevatedTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.ElevatedTrailingButton|ElevatedTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun LeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.LeadingButton|LeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun OutlinedLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.OutlinedLeadingButton|OutlinedLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun OutlinedTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.OutlinedTrailingButton|OutlinedTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun TonalLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.TonalLeadingButton|TonalLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun TonalTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.TonalTrailingButton|TonalTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun TrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.TrailingButton|TrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] - final fun TrailingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SplitButtonShapes = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SplitButtonDefaults.TrailingButton|TrailingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] + final fun ElevatedLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.ElevatedLeadingButton|ElevatedLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun ElevatedTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.ElevatedTrailingButton|ElevatedTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun LeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.LeadingButton|LeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun OutlinedLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.OutlinedLeadingButton|OutlinedLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun OutlinedTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.OutlinedTrailingButton|OutlinedTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun TonalLeadingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.TonalLeadingButton|TonalLeadingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun TonalTrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.TonalTrailingButton|TonalTrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun TrailingButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.TrailingButton|TrailingButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun TrailingButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SplitButtonShapes?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonDefaults.TrailingButton|TrailingButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SplitButtonShapes?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun leadingButtonContentPaddingFor(androidx.compose.ui.unit/Dp): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/SplitButtonDefaults.leadingButtonContentPaddingFor|leadingButtonContentPaddingFor(androidx.compose.ui.unit.Dp){}[0] final fun leadingButtonIconSizeFor(androidx.compose.ui.unit/Dp): androidx.compose.ui.unit/Dp // androidx.compose.material3/SplitButtonDefaults.leadingButtonIconSizeFor|leadingButtonIconSizeFor(androidx.compose.ui.unit.Dp){}[0] final fun leadingButtonShapes(androidx.compose.foundation.shape/CornerSize = ...): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.leadingButtonShapes|leadingButtonShapes(androidx.compose.foundation.shape.CornerSize){}[0] - final fun leadingButtonShapesFor(androidx.compose.ui.unit/Dp): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.leadingButtonShapesFor|leadingButtonShapesFor(androidx.compose.ui.unit.Dp){}[0] + final fun leadingButtonShapesFor(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.leadingButtonShapesFor|leadingButtonShapesFor(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun trailingButtonContentPaddingFor(androidx.compose.ui.unit/Dp): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/SplitButtonDefaults.trailingButtonContentPaddingFor|trailingButtonContentPaddingFor(androidx.compose.ui.unit.Dp){}[0] final fun trailingButtonIconSizeFor(androidx.compose.ui.unit/Dp): androidx.compose.ui.unit/Dp // androidx.compose.material3/SplitButtonDefaults.trailingButtonIconSizeFor|trailingButtonIconSizeFor(androidx.compose.ui.unit.Dp){}[0] final fun trailingButtonShapes(androidx.compose.foundation.shape/CornerSize = ...): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.trailingButtonShapes|trailingButtonShapes(androidx.compose.foundation.shape.CornerSize){}[0] - final fun trailingButtonShapesFor(androidx.compose.ui.unit/Dp): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.trailingButtonShapesFor|trailingButtonShapesFor(androidx.compose.ui.unit.Dp){}[0] + final fun trailingButtonShapesFor(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SplitButtonShapes // androidx.compose.material3/SplitButtonDefaults.trailingButtonShapesFor|trailingButtonShapesFor(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/SuggestionChipDefaults { // androidx.compose.material3/SuggestionChipDefaults|null[0] @@ -3376,29 +3376,29 @@ final val IconSize // androidx.compose.material3/SuggestionChipDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SuggestionChipDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] final val shape // androidx.compose.material3/SuggestionChipDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SuggestionChipDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/SuggestionChipDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun elevatedSuggestionChipColors(): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipColors|elevatedSuggestionChipColors(){}[0] - final fun elevatedSuggestionChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipColors|elevatedSuggestionChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun elevatedSuggestionChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipElevation // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipElevation|elevatedSuggestionChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun suggestionChipBorder(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipBorder // androidx.compose.material3/SuggestionChipDefaults.suggestionChipBorder|suggestionChipBorder(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun suggestionChipBorder(kotlin/Boolean, androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/BorderStroke // androidx.compose.material3/SuggestionChipDefaults.suggestionChipBorder|suggestionChipBorder(kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] - final fun suggestionChipColors(): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.suggestionChipColors|suggestionChipColors(){}[0] - final fun suggestionChipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.suggestionChipColors|suggestionChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun suggestionChipElevation(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.material3/ChipElevation // androidx.compose.material3/SuggestionChipDefaults.suggestionChipElevation|suggestionChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] + final fun elevatedSuggestionChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipColors|elevatedSuggestionChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedSuggestionChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipColors|elevatedSuggestionChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun elevatedSuggestionChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipElevation // androidx.compose.material3/SuggestionChipDefaults.elevatedSuggestionChipElevation|elevatedSuggestionChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun suggestionChipBorder(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipBorder // androidx.compose.material3/SuggestionChipDefaults.suggestionChipBorder|suggestionChipBorder(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun suggestionChipBorder(kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.foundation/BorderStroke // androidx.compose.material3/SuggestionChipDefaults.suggestionChipBorder|suggestionChipBorder(kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun suggestionChipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.suggestionChipColors|suggestionChipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun suggestionChipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipColors // androidx.compose.material3/SuggestionChipDefaults.suggestionChipColors|suggestionChipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun suggestionChipElevation(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ChipElevation // androidx.compose.material3/SuggestionChipDefaults.suggestionChipElevation|suggestionChipElevation(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/SwipeToDismissBoxDefaults { // androidx.compose.material3/SwipeToDismissBoxDefaults|null[0] final val positionalThreshold // androidx.compose.material3/SwipeToDismissBoxDefaults.positionalThreshold|{}positionalThreshold[0] - final fun <get-positionalThreshold>(): kotlin/Function1<kotlin/Float, kotlin/Float> // androidx.compose.material3/SwipeToDismissBoxDefaults.positionalThreshold.<get-positionalThreshold>|<get-positionalThreshold>(){}[0] + final fun <get-positionalThreshold>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Function1<kotlin/Float, kotlin/Float> // androidx.compose.material3/SwipeToDismissBoxDefaults.positionalThreshold.<get-positionalThreshold>|<get-positionalThreshold>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/SwitchDefaults { // androidx.compose.material3/SwitchDefaults|null[0] final val IconSize // androidx.compose.material3/SwitchDefaults.IconSize|{}IconSize[0] final fun <get-IconSize>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/SwitchDefaults.IconSize.<get-IconSize>|<get-IconSize>(){}[0] - final fun colors(): androidx.compose.material3/SwitchColors // androidx.compose.material3/SwitchDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/SwitchColors // androidx.compose.material3/SwitchDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/SwitchColors // androidx.compose.material3/SwitchDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/SwitchColors // androidx.compose.material3/SwitchDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/TabRowDefaults { // androidx.compose.material3/TabRowDefaults|null[0] @@ -3407,22 +3407,22 @@ final val ScrollableTabRowMinTabWidth // androidx.compose.material3/TabRowDefaults.ScrollableTabRowMinTabWidth|{}ScrollableTabRowMinTabWidth[0] final fun <get-ScrollableTabRowMinTabWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TabRowDefaults.ScrollableTabRowMinTabWidth.<get-ScrollableTabRowMinTabWidth>|<get-ScrollableTabRowMinTabWidth>(){}[0] final val containerColor // androidx.compose.material3/TabRowDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val contentColor // androidx.compose.material3/TabRowDefaults.contentColor|{}contentColor[0] - final fun <get-contentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.contentColor.<get-contentColor>|<get-contentColor>(){}[0] + final fun <get-contentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.contentColor.<get-contentColor>|<get-contentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val primaryContainerColor // androidx.compose.material3/TabRowDefaults.primaryContainerColor|{}primaryContainerColor[0] - final fun <get-primaryContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.primaryContainerColor.<get-primaryContainerColor>|<get-primaryContainerColor>(){}[0] + final fun <get-primaryContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.primaryContainerColor.<get-primaryContainerColor>|<get-primaryContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val primaryContentColor // androidx.compose.material3/TabRowDefaults.primaryContentColor|{}primaryContentColor[0] - final fun <get-primaryContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.primaryContentColor.<get-primaryContentColor>|<get-primaryContentColor>(){}[0] + final fun <get-primaryContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.primaryContentColor.<get-primaryContentColor>|<get-primaryContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val secondaryContainerColor // androidx.compose.material3/TabRowDefaults.secondaryContainerColor|{}secondaryContainerColor[0] - final fun <get-secondaryContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.secondaryContainerColor.<get-secondaryContainerColor>|<get-secondaryContainerColor>(){}[0] + final fun <get-secondaryContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.secondaryContainerColor.<get-secondaryContainerColor>|<get-secondaryContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val secondaryContentColor // androidx.compose.material3/TabRowDefaults.secondaryContentColor|{}secondaryContentColor[0] - final fun <get-secondaryContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.secondaryContentColor.<get-secondaryContentColor>|<get-secondaryContentColor>(){}[0] + final fun <get-secondaryContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TabRowDefaults.secondaryContentColor.<get-secondaryContentColor>|<get-secondaryContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun (androidx.compose.ui/Modifier).tabIndicatorOffset(androidx.compose.material3/TabPosition): androidx.compose.ui/Modifier // androidx.compose.material3/TabRowDefaults.tabIndicatorOffset|tabIndicatorOffset@androidx.compose.ui.Modifier(androidx.compose.material3.TabPosition){}[0] - final fun Indicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/TabRowDefaults.Indicator|Indicator(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] - final fun PrimaryIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape = ...) // androidx.compose.material3/TabRowDefaults.PrimaryIndicator|PrimaryIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape){}[0] - final fun SecondaryIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/TabRowDefaults.SecondaryIndicator|SecondaryIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] + final fun Indicator(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TabRowDefaults.Indicator|Indicator(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun PrimaryIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TabRowDefaults.PrimaryIndicator|PrimaryIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun SecondaryIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TabRowDefaults.SecondaryIndicator|SecondaryIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/TextFieldDefaults { // androidx.compose.material3/TextFieldDefaults|null[0] @@ -3439,43 +3439,43 @@ final val UnfocusedIndicatorThickness // androidx.compose.material3/TextFieldDefaults.UnfocusedIndicatorThickness|{}UnfocusedIndicatorThickness[0] final fun <get-UnfocusedIndicatorThickness>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TextFieldDefaults.UnfocusedIndicatorThickness.<get-UnfocusedIndicatorThickness>|<get-UnfocusedIndicatorThickness>(){}[0] final val filledShape // androidx.compose.material3/TextFieldDefaults.filledShape|{}filledShape[0] - final fun <get-filledShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.filledShape.<get-filledShape>|<get-filledShape>(){}[0] + final fun <get-filledShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.filledShape.<get-filledShape>|<get-filledShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val outlinedShape // androidx.compose.material3/TextFieldDefaults.outlinedShape|{}outlinedShape[0] - final fun <get-outlinedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(){}[0] + final fun <get-outlinedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.outlinedShape.<get-outlinedShape>|<get-outlinedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/TextFieldDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TextFieldDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun (androidx.compose.ui/Modifier).indicatorLine(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors, androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.ui/Modifier // androidx.compose.material3/TextFieldDefaults.indicatorLine|indicatorLine@androidx.compose.ui.Modifier(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun (androidx.compose.ui/Modifier).indicatorLine(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors? = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.ui/Modifier // androidx.compose.material3/TextFieldDefaults.indicatorLine|indicatorLine@androidx.compose.ui.Modifier(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun Container(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.ui/Modifier = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/TextFieldDefaults.Container|Container(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.ui.Modifier;androidx.compose.material3.TextFieldColors;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun ContainerBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors, androidx.compose.ui.graphics/Shape = ...) // androidx.compose.material3/TextFieldDefaults.ContainerBox|ContainerBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors;androidx.compose.ui.graphics.Shape){}[0] - final fun DecorationBox(kotlin/String, kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function0<kotlin/Unit> = ...) // androidx.compose.material3/TextFieldDefaults.DecorationBox|DecorationBox(kotlin.String;kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function0<kotlin.Unit>){}[0] - final fun colors(): androidx.compose.material3/TextFieldColors // androidx.compose.material3/TextFieldDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text.selection/TextSelectionColors? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TextFieldColors // androidx.compose.material3/TextFieldDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun Container(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.ui/Modifier?, androidx.compose.material3/TextFieldColors?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextFieldDefaults.Container|Container(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.ui.Modifier?;androidx.compose.material3.TextFieldColors?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun ContainerBox(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldColors, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextFieldDefaults.ContainerBox|ContainerBox(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldColors;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun DecorationBox(kotlin/String, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation, androidx.compose.foundation.interaction/InteractionSource, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextFieldDefaults.DecorationBox|DecorationBox(kotlin.String;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.interaction.InteractionSource;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/TextFieldDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text.selection/TextSelectionColors?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TextFieldColors // androidx.compose.material3/TextFieldDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.selection.TextSelectionColors?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun contentPaddingWithLabel(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/TextFieldDefaults.contentPaddingWithLabel|contentPaddingWithLabel(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun contentPaddingWithoutLabel(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/TextFieldDefaults.contentPaddingWithoutLabel|contentPaddingWithoutLabel(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] - final fun decorator(androidx.compose.foundation.text.input/TextFieldState, kotlin/Boolean, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function0<kotlin/Unit> = ...): androidx.compose.foundation.text.input/TextFieldDecorator // androidx.compose.material3/TextFieldDefaults.decorator|decorator(androidx.compose.foundation.text.input.TextFieldState;kotlin.Boolean;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;kotlin.Function0<kotlin.Unit>){}[0] + final fun decorator(androidx.compose.foundation.text.input/TextFieldState, kotlin/Boolean, androidx.compose.foundation.text.input/TextFieldLineLimits, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.interaction/InteractionSource, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.foundation.text.input/TextFieldDecorator // androidx.compose.material3/TextFieldDefaults.decorator|decorator(androidx.compose.foundation.text.input.TextFieldState;kotlin.Boolean;androidx.compose.foundation.text.input.TextFieldLineLimits;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.interaction.InteractionSource;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun outlinedTextFieldPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/TextFieldDefaults.outlinedTextFieldPadding|outlinedTextFieldPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun textFieldWithLabelPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/TextFieldDefaults.textFieldWithLabelPadding|textFieldWithLabelPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun textFieldWithoutLabelPadding(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation.layout/PaddingValues // androidx.compose.material3/TextFieldDefaults.textFieldWithoutLabelPadding|textFieldWithoutLabelPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] } final object androidx.compose.material3/TimePickerDefaults { // androidx.compose.material3/TimePickerDefaults|null[0] - final fun colors(): androidx.compose.material3/TimePickerColors // androidx.compose.material3/TimePickerDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TimePickerColors // androidx.compose.material3/TimePickerDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun layoutType(): androidx.compose.material3/TimePickerLayoutType // androidx.compose.material3/TimePickerDefaults.layoutType|layoutType(){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TimePickerColors // androidx.compose.material3/TimePickerDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int): androidx.compose.material3/TimePickerColors // androidx.compose.material3/TimePickerDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] + final fun layoutType(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TimePickerLayoutType // androidx.compose.material3/TimePickerDefaults.layoutType|layoutType(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/TimePickerDialogDefaults { // androidx.compose.material3/TimePickerDialogDefaults|null[0] final val MinHeightForTimePicker // androidx.compose.material3/TimePickerDialogDefaults.MinHeightForTimePicker|{}MinHeightForTimePicker[0] final fun <get-MinHeightForTimePicker>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TimePickerDialogDefaults.MinHeightForTimePicker.<get-MinHeightForTimePicker>|<get-MinHeightForTimePicker>(){}[0] final val containerColor // androidx.compose.material3/TimePickerDialogDefaults.containerColor|{}containerColor[0] - final fun <get-containerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TimePickerDialogDefaults.containerColor.<get-containerColor>|<get-containerColor>(){}[0] + final fun <get-containerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TimePickerDialogDefaults.containerColor.<get-containerColor>|<get-containerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/TimePickerDialogDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TimePickerDialogDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TimePickerDialogDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun DisplayModeToggle(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/TimePickerDisplayMode, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/TimePickerDialogDefaults.DisplayModeToggle|DisplayModeToggle(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.TimePickerDisplayMode;androidx.compose.ui.Modifier){}[0] - final fun Title(androidx.compose.material3/TimePickerDisplayMode, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/TimePickerDialogDefaults.Title|Title(androidx.compose.material3.TimePickerDisplayMode;androidx.compose.ui.Modifier){}[0] + final fun DisplayModeToggle(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/TimePickerDisplayMode, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TimePickerDialogDefaults.DisplayModeToggle|DisplayModeToggle(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.TimePickerDisplayMode;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun Title(androidx.compose.material3/TimePickerDisplayMode, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TimePickerDialogDefaults.Title|Title(androidx.compose.material3.TimePickerDisplayMode;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ToggleButtonDefaults { // androidx.compose.material3/ToggleButtonDefaults|null[0] @@ -3488,56 +3488,56 @@ final val MinHeight // androidx.compose.material3/ToggleButtonDefaults.MinHeight|{}MinHeight[0] final fun <get-MinHeight>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/ToggleButtonDefaults.MinHeight.<get-MinHeight>|<get-MinHeight>(){}[0] final val checkedShape // androidx.compose.material3/ToggleButtonDefaults.checkedShape|{}checkedShape[0] - final fun <get-checkedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.checkedShape.<get-checkedShape>|<get-checkedShape>(){}[0] + final fun <get-checkedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.checkedShape.<get-checkedShape>|<get-checkedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeCheckedSquareShape // androidx.compose.material3/ToggleButtonDefaults.extraLargeCheckedSquareShape|{}extraLargeCheckedSquareShape[0] - final fun <get-extraLargeCheckedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargeCheckedSquareShape.<get-extraLargeCheckedSquareShape>|<get-extraLargeCheckedSquareShape>(){}[0] + final fun <get-extraLargeCheckedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargeCheckedSquareShape.<get-extraLargeCheckedSquareShape>|<get-extraLargeCheckedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargePressedShape // androidx.compose.material3/ToggleButtonDefaults.extraLargePressedShape|{}extraLargePressedShape[0] - final fun <get-extraLargePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(){}[0] + final fun <get-extraLargePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargePressedShape.<get-extraLargePressedShape>|<get-extraLargePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraLargeSquareShape // androidx.compose.material3/ToggleButtonDefaults.extraLargeSquareShape|{}extraLargeSquareShape[0] - final fun <get-extraLargeSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargeSquareShape.<get-extraLargeSquareShape>|<get-extraLargeSquareShape>(){}[0] + final fun <get-extraLargeSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraLargeSquareShape.<get-extraLargeSquareShape>|<get-extraLargeSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallCheckedSquareShape // androidx.compose.material3/ToggleButtonDefaults.extraSmallCheckedSquareShape|{}extraSmallCheckedSquareShape[0] - final fun <get-extraSmallCheckedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallCheckedSquareShape.<get-extraSmallCheckedSquareShape>|<get-extraSmallCheckedSquareShape>(){}[0] + final fun <get-extraSmallCheckedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallCheckedSquareShape.<get-extraSmallCheckedSquareShape>|<get-extraSmallCheckedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallPressedShape // androidx.compose.material3/ToggleButtonDefaults.extraSmallPressedShape|{}extraSmallPressedShape[0] - final fun <get-extraSmallPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(){}[0] + final fun <get-extraSmallPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallPressedShape.<get-extraSmallPressedShape>|<get-extraSmallPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val extraSmallSquareShape // androidx.compose.material3/ToggleButtonDefaults.extraSmallSquareShape|{}extraSmallSquareShape[0] - final fun <get-extraSmallSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallSquareShape.<get-extraSmallSquareShape>|<get-extraSmallSquareShape>(){}[0] + final fun <get-extraSmallSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.extraSmallSquareShape.<get-extraSmallSquareShape>|<get-extraSmallSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeCheckedSquareShape // androidx.compose.material3/ToggleButtonDefaults.largeCheckedSquareShape|{}largeCheckedSquareShape[0] - final fun <get-largeCheckedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largeCheckedSquareShape.<get-largeCheckedSquareShape>|<get-largeCheckedSquareShape>(){}[0] + final fun <get-largeCheckedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largeCheckedSquareShape.<get-largeCheckedSquareShape>|<get-largeCheckedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largePressedShape // androidx.compose.material3/ToggleButtonDefaults.largePressedShape|{}largePressedShape[0] - final fun <get-largePressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(){}[0] + final fun <get-largePressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largePressedShape.<get-largePressedShape>|<get-largePressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val largeSquareShape // androidx.compose.material3/ToggleButtonDefaults.largeSquareShape|{}largeSquareShape[0] - final fun <get-largeSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largeSquareShape.<get-largeSquareShape>|<get-largeSquareShape>(){}[0] + final fun <get-largeSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.largeSquareShape.<get-largeSquareShape>|<get-largeSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumCheckedSquareShape // androidx.compose.material3/ToggleButtonDefaults.mediumCheckedSquareShape|{}mediumCheckedSquareShape[0] - final fun <get-mediumCheckedSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumCheckedSquareShape.<get-mediumCheckedSquareShape>|<get-mediumCheckedSquareShape>(){}[0] + final fun <get-mediumCheckedSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumCheckedSquareShape.<get-mediumCheckedSquareShape>|<get-mediumCheckedSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumPressedShape // androidx.compose.material3/ToggleButtonDefaults.mediumPressedShape|{}mediumPressedShape[0] - final fun <get-mediumPressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(){}[0] + final fun <get-mediumPressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumPressedShape.<get-mediumPressedShape>|<get-mediumPressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val mediumSquareShape // androidx.compose.material3/ToggleButtonDefaults.mediumSquareShape|{}mediumSquareShape[0] - final fun <get-mediumSquareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumSquareShape.<get-mediumSquareShape>|<get-mediumSquareShape>(){}[0] + final fun <get-mediumSquareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.mediumSquareShape.<get-mediumSquareShape>|<get-mediumSquareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val pressedShape // androidx.compose.material3/ToggleButtonDefaults.pressedShape|{}pressedShape[0] - final fun <get-pressedShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.pressedShape.<get-pressedShape>|<get-pressedShape>(){}[0] + final fun <get-pressedShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.pressedShape.<get-pressedShape>|<get-pressedShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val roundShape // androidx.compose.material3/ToggleButtonDefaults.roundShape|{}roundShape[0] - final fun <get-roundShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.roundShape.<get-roundShape>|<get-roundShape>(){}[0] + final fun <get-roundShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.roundShape.<get-roundShape>|<get-roundShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val shape // androidx.compose.material3/ToggleButtonDefaults.shape|{}shape[0] - final fun <get-shape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.shape.<get-shape>|<get-shape>(){}[0] + final fun <get-shape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.shape.<get-shape>|<get-shape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val squareShape // androidx.compose.material3/ToggleButtonDefaults.squareShape|{}squareShape[0] - final fun <get-squareShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.squareShape.<get-squareShape>|<get-squareShape>(){}[0] + final fun <get-squareShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/ToggleButtonDefaults.squareShape.<get-squareShape>|<get-squareShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun elevatedToggleButtonColors(): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.elevatedToggleButtonColors|elevatedToggleButtonColors(){}[0] - final fun elevatedToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.elevatedToggleButtonColors|elevatedToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun outlinedToggleButtonColors(): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.outlinedToggleButtonColors|outlinedToggleButtonColors(){}[0] - final fun outlinedToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.outlinedToggleButtonColors|outlinedToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun shapes(): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapes|shapes(){}[0] - final fun shapes(androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ...): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?){}[0] - final fun shapesFor(androidx.compose.ui.unit/Dp): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapesFor|shapesFor(androidx.compose.ui.unit.Dp){}[0] - final fun toggleButtonColors(): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.toggleButtonColors|toggleButtonColors(){}[0] - final fun toggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.toggleButtonColors|toggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun tonalToggleButtonColors(): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.tonalToggleButtonColors|tonalToggleButtonColors(){}[0] - final fun tonalToggleButtonColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.tonalToggleButtonColors|tonalToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun elevatedToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.elevatedToggleButtonColors|elevatedToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun elevatedToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.elevatedToggleButtonColors|elevatedToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun outlinedToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.outlinedToggleButtonColors|outlinedToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun outlinedToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.outlinedToggleButtonColors|outlinedToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapes(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapes|shapes(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun shapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapesFor(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonShapes // androidx.compose.material3/ToggleButtonDefaults.shapesFor|shapesFor(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun toggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.toggleButtonColors|toggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun toggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.toggleButtonColors|toggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun tonalToggleButtonColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.tonalToggleButtonColors|tonalToggleButtonColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun tonalToggleButtonColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/ToggleButtonColors // androidx.compose.material3/ToggleButtonDefaults.tonalToggleButtonColors|tonalToggleButtonColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/ToggleFloatingActionButtonDefaults { // androidx.compose.material3/ToggleFloatingActionButtonDefaults|null[0] - final fun (androidx.compose.ui/Modifier).animateIcon(kotlin/Function0<kotlin/Float>, kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> = ..., kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> = ...): androidx.compose.ui/Modifier // androidx.compose.material3/ToggleFloatingActionButtonDefaults.animateIcon|animateIcon@androidx.compose.ui.Modifier(kotlin.Function0<kotlin.Float>;kotlin.Function1<kotlin.Float,androidx.compose.ui.graphics.Color>;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>){}[0] - final fun containerColor(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerColor|containerColor(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun (androidx.compose.ui/Modifier).animateIcon(kotlin/Function0<kotlin/Float>, kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color>?, kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui/Modifier // androidx.compose.material3/ToggleFloatingActionButtonDefaults.animateIcon|animateIcon@androidx.compose.ui.Modifier(kotlin.Function0<kotlin.Float>;kotlin.Function1<kotlin.Float,androidx.compose.ui.graphics.Color>?;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun containerColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerColor|containerColor(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun containerCornerRadius(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerCornerRadius|containerCornerRadius(){}[0] final fun containerCornerRadius(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp = ...): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerCornerRadius|containerCornerRadius(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun containerCornerRadiusLarge(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerCornerRadiusLarge|containerCornerRadiusLarge(){}[0] @@ -3546,7 +3546,7 @@ final fun containerSize(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp = ...): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerSize|containerSize(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun containerSizeLarge(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerSizeLarge|containerSizeLarge(){}[0] final fun containerSizeMedium(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.containerSizeMedium|containerSizeMedium(){}[0] - final fun iconColor(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.iconColor|iconColor(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun iconColor(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.iconColor|iconColor(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun iconSize(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.iconSize|iconSize(){}[0] final fun iconSize(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp = ...): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.iconSize|iconSize(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun iconSizeLarge(): kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> // androidx.compose.material3/ToggleFloatingActionButtonDefaults.iconSizeLarge|iconSizeLarge(){}[0] @@ -3557,23 +3557,23 @@ final val caretSize // androidx.compose.material3/TooltipDefaults.caretSize|{}caretSize[0] final fun <get-caretSize>(): androidx.compose.ui.unit/DpSize // androidx.compose.material3/TooltipDefaults.caretSize.<get-caretSize>|<get-caretSize>(){}[0] final val plainTooltipContainerColor // androidx.compose.material3/TooltipDefaults.plainTooltipContainerColor|{}plainTooltipContainerColor[0] - final fun <get-plainTooltipContainerColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TooltipDefaults.plainTooltipContainerColor.<get-plainTooltipContainerColor>|<get-plainTooltipContainerColor>(){}[0] + final fun <get-plainTooltipContainerColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TooltipDefaults.plainTooltipContainerColor.<get-plainTooltipContainerColor>|<get-plainTooltipContainerColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val plainTooltipContainerShape // androidx.compose.material3/TooltipDefaults.plainTooltipContainerShape|{}plainTooltipContainerShape[0] - final fun <get-plainTooltipContainerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TooltipDefaults.plainTooltipContainerShape.<get-plainTooltipContainerShape>|<get-plainTooltipContainerShape>(){}[0] + final fun <get-plainTooltipContainerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TooltipDefaults.plainTooltipContainerShape.<get-plainTooltipContainerShape>|<get-plainTooltipContainerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val plainTooltipContentColor // androidx.compose.material3/TooltipDefaults.plainTooltipContentColor|{}plainTooltipContentColor[0] - final fun <get-plainTooltipContentColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/TooltipDefaults.plainTooltipContentColor.<get-plainTooltipContentColor>|<get-plainTooltipContentColor>(){}[0] + final fun <get-plainTooltipContentColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/TooltipDefaults.plainTooltipContentColor.<get-plainTooltipContentColor>|<get-plainTooltipContentColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val plainTooltipMaxWidth // androidx.compose.material3/TooltipDefaults.plainTooltipMaxWidth|{}plainTooltipMaxWidth[0] final fun <get-plainTooltipMaxWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TooltipDefaults.plainTooltipMaxWidth.<get-plainTooltipMaxWidth>|<get-plainTooltipMaxWidth>(){}[0] final val richTooltipContainerShape // androidx.compose.material3/TooltipDefaults.richTooltipContainerShape|{}richTooltipContainerShape[0] - final fun <get-richTooltipContainerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TooltipDefaults.richTooltipContainerShape.<get-richTooltipContainerShape>|<get-richTooltipContainerShape>(){}[0] + final fun <get-richTooltipContainerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/TooltipDefaults.richTooltipContainerShape.<get-richTooltipContainerShape>|<get-richTooltipContainerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val richTooltipMaxWidth // androidx.compose.material3/TooltipDefaults.richTooltipMaxWidth|{}richTooltipMaxWidth[0] final fun <get-richTooltipMaxWidth>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TooltipDefaults.richTooltipMaxWidth.<get-richTooltipMaxWidth>|<get-richTooltipMaxWidth>(){}[0] - final fun rememberPlainTooltipPositionProvider(androidx.compose.ui.unit/Dp = ...): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberPlainTooltipPositionProvider|rememberPlainTooltipPositionProvider(androidx.compose.ui.unit.Dp){}[0] - final fun rememberRichTooltipPositionProvider(androidx.compose.ui.unit/Dp = ...): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberRichTooltipPositionProvider|rememberRichTooltipPositionProvider(androidx.compose.ui.unit.Dp){}[0] - final fun rememberTooltipPositionProvider(androidx.compose.ui.unit/Dp = ...): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberTooltipPositionProvider|rememberTooltipPositionProvider(androidx.compose.ui.unit.Dp){}[0] - final fun richTooltipColors(): androidx.compose.material3/RichTooltipColors // androidx.compose.material3/TooltipDefaults.richTooltipColors|richTooltipColors(){}[0] - final fun richTooltipColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/RichTooltipColors // androidx.compose.material3/TooltipDefaults.richTooltipColors|richTooltipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun rememberPlainTooltipPositionProvider(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberPlainTooltipPositionProvider|rememberPlainTooltipPositionProvider(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun rememberRichTooltipPositionProvider(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberRichTooltipPositionProvider|rememberRichTooltipPositionProvider(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun rememberTooltipPositionProvider(androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.window/PopupPositionProvider // androidx.compose.material3/TooltipDefaults.rememberTooltipPositionProvider|rememberTooltipPositionProvider(androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun richTooltipColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/RichTooltipColors // androidx.compose.material3/TooltipDefaults.richTooltipColors|richTooltipColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun richTooltipColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/RichTooltipColors // androidx.compose.material3/TooltipDefaults.richTooltipColors|richTooltipColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/TopAppBarDefaults { // androidx.compose.material3/TopAppBarDefaults|null[0] @@ -3596,28 +3596,28 @@ final val TopAppBarExpandedHeight // androidx.compose.material3/TopAppBarDefaults.TopAppBarExpandedHeight|{}TopAppBarExpandedHeight[0] final fun <get-TopAppBarExpandedHeight>(): androidx.compose.ui.unit/Dp // androidx.compose.material3/TopAppBarDefaults.TopAppBarExpandedHeight.<get-TopAppBarExpandedHeight>|<get-TopAppBarExpandedHeight>(){}[0] final val windowInsets // androidx.compose.material3/TopAppBarDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/TopAppBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/TopAppBarDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun centerAlignedTopAppBarColors(): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.centerAlignedTopAppBarColors|centerAlignedTopAppBarColors(){}[0] - final fun centerAlignedTopAppBarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.centerAlignedTopAppBarColors|centerAlignedTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun enterAlwaysScrollBehavior(androidx.compose.material3/TopAppBarState = ..., kotlin/Function0<kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>? = ...): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.enterAlwaysScrollBehavior|enterAlwaysScrollBehavior(androidx.compose.material3.TopAppBarState;kotlin.Function0<kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?){}[0] - final fun enterAlwaysScrollBehavior(androidx.compose.material3/TopAppBarState = ..., kotlin/Function0<kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>? = ..., kotlin/Boolean = ...): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.enterAlwaysScrollBehavior|enterAlwaysScrollBehavior(androidx.compose.material3.TopAppBarState;kotlin.Function0<kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;kotlin.Boolean){}[0] - final fun exitUntilCollapsedScrollBehavior(androidx.compose.material3/TopAppBarState = ..., kotlin/Function0<kotlin/Boolean> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ..., androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>? = ...): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.exitUntilCollapsedScrollBehavior|exitUntilCollapsedScrollBehavior(androidx.compose.material3.TopAppBarState;kotlin.Function0<kotlin.Boolean>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?){}[0] - final fun largeTopAppBarColors(): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.largeTopAppBarColors|largeTopAppBarColors(){}[0] - final fun largeTopAppBarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.largeTopAppBarColors|largeTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun mediumTopAppBarColors(): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.mediumTopAppBarColors|mediumTopAppBarColors(){}[0] - final fun mediumTopAppBarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.mediumTopAppBarColors|mediumTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun pinnedScrollBehavior(androidx.compose.material3/TopAppBarState = ..., kotlin/Function0<kotlin/Boolean> = ...): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.pinnedScrollBehavior|pinnedScrollBehavior(androidx.compose.material3.TopAppBarState;kotlin.Function0<kotlin.Boolean>){}[0] - final fun topAppBarColors(): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(){}[0] - final fun topAppBarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun topAppBarColors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun centerAlignedTopAppBarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.centerAlignedTopAppBarColors|centerAlignedTopAppBarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun centerAlignedTopAppBarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.centerAlignedTopAppBarColors|centerAlignedTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun enterAlwaysScrollBehavior(androidx.compose.material3/TopAppBarState?, kotlin/Function0<kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.enterAlwaysScrollBehavior|enterAlwaysScrollBehavior(androidx.compose.material3.TopAppBarState?;kotlin.Function0<kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun enterAlwaysScrollBehavior(androidx.compose.material3/TopAppBarState?, kotlin/Function0<kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.enterAlwaysScrollBehavior|enterAlwaysScrollBehavior(androidx.compose.material3.TopAppBarState?;kotlin.Function0<kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun exitUntilCollapsedScrollBehavior(androidx.compose.material3/TopAppBarState?, kotlin/Function0<kotlin/Boolean>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/DecayAnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.exitUntilCollapsedScrollBehavior|exitUntilCollapsedScrollBehavior(androidx.compose.material3.TopAppBarState?;kotlin.Function0<kotlin.Boolean>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.DecayAnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun largeTopAppBarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.largeTopAppBarColors|largeTopAppBarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun largeTopAppBarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.largeTopAppBarColors|largeTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun mediumTopAppBarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.mediumTopAppBarColors|mediumTopAppBarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun mediumTopAppBarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.mediumTopAppBarColors|mediumTopAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun pinnedScrollBehavior(androidx.compose.material3/TopAppBarState?, kotlin/Function0<kotlin/Boolean>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarScrollBehavior // androidx.compose.material3/TopAppBarDefaults.pinnedScrollBehavior|pinnedScrollBehavior(androidx.compose.material3.TopAppBarState?;kotlin.Function0<kotlin.Boolean>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun topAppBarColors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun topAppBarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun topAppBarColors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarColors // androidx.compose.material3/TopAppBarDefaults.topAppBarColors|topAppBarColors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/VerticalDragHandleDefaults { // androidx.compose.material3/VerticalDragHandleDefaults|null[0] - final fun colors(): androidx.compose.material3/DragHandleColors // androidx.compose.material3/VerticalDragHandleDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/DragHandleColors // androidx.compose.material3/VerticalDragHandleDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] - final fun shapes(): androidx.compose.material3/DragHandleShapes // androidx.compose.material3/VerticalDragHandleDefaults.shapes|shapes(){}[0] - final fun shapes(androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ..., androidx.compose.ui.graphics/Shape? = ...): androidx.compose.material3/DragHandleShapes // androidx.compose.material3/VerticalDragHandleDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/DragHandleColors // androidx.compose.material3/VerticalDragHandleDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/DragHandleColors // androidx.compose.material3/VerticalDragHandleDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] + final fun shapes(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/DragHandleShapes // androidx.compose.material3/VerticalDragHandleDefaults.shapes|shapes(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun shapes(androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/DragHandleShapes // androidx.compose.material3/VerticalDragHandleDefaults.shapes|shapes(androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun sizes(): androidx.compose.material3/DragHandleSizes // androidx.compose.material3/VerticalDragHandleDefaults.sizes|sizes(){}[0] final fun sizes(androidx.compose.ui.unit/DpSize = ..., androidx.compose.ui.unit/DpSize = ..., androidx.compose.ui.unit/DpSize = ...): androidx.compose.material3/DragHandleSizes // androidx.compose.material3/VerticalDragHandleDefaults.sizes|sizes(androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.DpSize){}[0] } @@ -3644,41 +3644,203 @@ final val ProgressAnimationSpec // androidx.compose.material3/WavyProgressIndicatorDefaults.ProgressAnimationSpec|{}ProgressAnimationSpec[0] final fun <get-ProgressAnimationSpec>(): androidx.compose.animation.core/AnimationSpec<kotlin/Float> // androidx.compose.material3/WavyProgressIndicatorDefaults.ProgressAnimationSpec.<get-ProgressAnimationSpec>|<get-ProgressAnimationSpec>(){}[0] final val circularIndicatorStroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularIndicatorStroke|{}circularIndicatorStroke[0] - final fun <get-circularIndicatorStroke>(): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularIndicatorStroke.<get-circularIndicatorStroke>|<get-circularIndicatorStroke>(){}[0] + final fun <get-circularIndicatorStroke>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularIndicatorStroke.<get-circularIndicatorStroke>|<get-circularIndicatorStroke>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val circularTrackStroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularTrackStroke|{}circularTrackStroke[0] - final fun <get-circularTrackStroke>(): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularTrackStroke.<get-circularTrackStroke>|<get-circularTrackStroke>(){}[0] + final fun <get-circularTrackStroke>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.circularTrackStroke.<get-circularTrackStroke>|<get-circularTrackStroke>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val indicatorAmplitude // androidx.compose.material3/WavyProgressIndicatorDefaults.indicatorAmplitude|{}indicatorAmplitude[0] final fun <get-indicatorAmplitude>(): kotlin/Function1<kotlin/Float, kotlin/Float> // androidx.compose.material3/WavyProgressIndicatorDefaults.indicatorAmplitude.<get-indicatorAmplitude>|<get-indicatorAmplitude>(){}[0] final val indicatorColor // androidx.compose.material3/WavyProgressIndicatorDefaults.indicatorColor|{}indicatorColor[0] - final fun <get-indicatorColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/WavyProgressIndicatorDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(){}[0] + final fun <get-indicatorColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/WavyProgressIndicatorDefaults.indicatorColor.<get-indicatorColor>|<get-indicatorColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val linearIndicatorStroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearIndicatorStroke|{}linearIndicatorStroke[0] - final fun <get-linearIndicatorStroke>(): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearIndicatorStroke.<get-linearIndicatorStroke>|<get-linearIndicatorStroke>(){}[0] + final fun <get-linearIndicatorStroke>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearIndicatorStroke.<get-linearIndicatorStroke>|<get-linearIndicatorStroke>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val linearTrackStroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearTrackStroke|{}linearTrackStroke[0] - final fun <get-linearTrackStroke>(): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearTrackStroke.<get-linearTrackStroke>|<get-linearTrackStroke>(){}[0] + final fun <get-linearTrackStroke>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.drawscope/Stroke // androidx.compose.material3/WavyProgressIndicatorDefaults.linearTrackStroke.<get-linearTrackStroke>|<get-linearTrackStroke>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val trackColor // androidx.compose.material3/WavyProgressIndicatorDefaults.trackColor|{}trackColor[0] - final fun <get-trackColor>(): androidx.compose.ui.graphics/Color // androidx.compose.material3/WavyProgressIndicatorDefaults.trackColor.<get-trackColor>|<get-trackColor>(){}[0] + final fun <get-trackColor>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/WavyProgressIndicatorDefaults.trackColor.<get-trackColor>|<get-trackColor>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.compose.material3/WideNavigationRailDefaults { // androidx.compose.material3/WideNavigationRailDefaults|null[0] final val arrangement // androidx.compose.material3/WideNavigationRailDefaults.arrangement|{}arrangement[0] final fun <get-arrangement>(): androidx.compose.foundation.layout/Arrangement.Vertical // androidx.compose.material3/WideNavigationRailDefaults.arrangement.<get-arrangement>|<get-arrangement>(){}[0] final val containerShape // androidx.compose.material3/WideNavigationRailDefaults.containerShape|{}containerShape[0] - final fun <get-containerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/WideNavigationRailDefaults.containerShape.<get-containerShape>|<get-containerShape>(){}[0] + final fun <get-containerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/WideNavigationRailDefaults.containerShape.<get-containerShape>|<get-containerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val modalContainerShape // androidx.compose.material3/WideNavigationRailDefaults.modalContainerShape|{}modalContainerShape[0] - final fun <get-modalContainerShape>(): androidx.compose.ui.graphics/Shape // androidx.compose.material3/WideNavigationRailDefaults.modalContainerShape.<get-modalContainerShape>|<get-modalContainerShape>(){}[0] + final fun <get-modalContainerShape>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/WideNavigationRailDefaults.modalContainerShape.<get-modalContainerShape>|<get-modalContainerShape>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val windowInsets // androidx.compose.material3/WideNavigationRailDefaults.windowInsets|{}windowInsets[0] - final fun <get-windowInsets>(): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/WideNavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(){}[0] + final fun <get-windowInsets>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.foundation.layout/WindowInsets // androidx.compose.material3/WideNavigationRailDefaults.windowInsets.<get-windowInsets>|<get-windowInsets>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] - final fun colors(): androidx.compose.material3/WideNavigationRailColors // androidx.compose.material3/WideNavigationRailDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/WideNavigationRailColors // androidx.compose.material3/WideNavigationRailDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/WideNavigationRailColors // androidx.compose.material3/WideNavigationRailDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/WideNavigationRailColors // androidx.compose.material3/WideNavigationRailDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] } final object androidx.compose.material3/WideNavigationRailItemDefaults { // androidx.compose.material3/WideNavigationRailItemDefaults|null[0] - final fun colors(): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/WideNavigationRailItemDefaults.colors|colors(){}[0] - final fun colors(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/WideNavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] + final fun colors(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/WideNavigationRailItemDefaults.colors|colors(androidx.compose.runtime.Composer?;kotlin.Int){}[0] + final fun colors(androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/NavigationItemColors // androidx.compose.material3/WideNavigationRailItemDefaults.colors|colors(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun iconPositionFor(kotlin/Boolean): androidx.compose.material3/NavigationItemIconPosition // androidx.compose.material3/WideNavigationRailItemDefaults.iconPositionFor|iconPositionFor(kotlin.Boolean){}[0] } +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_Arrangement$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Arrangement$stableprop|#static{}androidx_compose_material3_carousel_Arrangement$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselDefaults$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselDefaults$stableprop|#static{}androidx_compose_material3_carousel_CarouselDefaults$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop|#static{}androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop|#static{}androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPageSize$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPageSize$stableprop|#static{}androidx_compose_material3_carousel_CarouselPageSize$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPagerState$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPagerState$stableprop|#static{}androidx_compose_material3_carousel_CarouselPagerState$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselState$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselState$stableprop|#static{}androidx_compose_material3_carousel_CarouselState$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_Keyline$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Keyline$stableprop|#static{}androidx_compose_material3_carousel_Keyline$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_KeylineList$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_KeylineList$stableprop|#static{}androidx_compose_material3_carousel_KeylineList$stableprop[0] +final val androidx.compose.material3.carousel/androidx_compose_material3_carousel_Strategy$stableprop // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Strategy$stableprop|#static{}androidx_compose_material3_carousel_Strategy$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop|#static{}androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop|#static{}androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop|#static{}androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop|#static{}androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop|#static{}androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableState$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableState$stableprop|#static{}androidx_compose_material3_internal_AnchoredDraggableState$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_AnimatedShapeState$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_AnimatedShapeState$stableprop|#static{}androidx_compose_material3_internal_AnimatedShapeState$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventCompat$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventCompat$stableprop|#static{}androidx_compose_material3_internal_BackEventCompat$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_Completed$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_Completed$stableprop|#static{}androidx_compose_material3_internal_BackEventProgress_Completed$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop|#static{}androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop|#static{}androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipDefaults$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipDefaults$stableprop|#static{}androidx_compose_material3_internal_BasicTooltipDefaults$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipStrings$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipStrings$stableprop|#static{}androidx_compose_material3_internal_BasicTooltipStrings$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarDate$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarDate$stableprop|#static{}androidx_compose_material3_internal_CalendarDate$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarModel$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarModel$stableprop|#static{}androidx_compose_material3_internal_CalendarModel$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarMonth$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarMonth$stableprop|#static{}androidx_compose_material3_internal_CalendarMonth$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNode$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNode$stableprop|#static{}androidx_compose_material3_internal_ChildSemanticsNode$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop|#static{}androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_DateInputFormat$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_DateInputFormat$stableprop|#static{}androidx_compose_material3_internal_DateInputFormat$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop|#static{}androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop|#static{}androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_Icons$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons$stableprop|#static{}androidx_compose_material3_internal_Icons$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored$stableprop|#static{}androidx_compose_material3_internal_Icons_AutoMirrored$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop|#static{}androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Filled$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Filled$stableprop|#static{}androidx_compose_material3_internal_Icons_Filled$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Outlined$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Outlined$stableprop|#static{}androidx_compose_material3_internal_Icons_Outlined$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_InternalAtomicReference$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_InternalAtomicReference$stableprop|#static{}androidx_compose_material3_internal_InternalAtomicReference$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_InternalMutatorMutex$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_InternalMutatorMutex$stableprop|#static{}androidx_compose_material3_internal_InternalMutatorMutex$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_MappedInteractionSource$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_MappedInteractionSource$stableprop|#static{}androidx_compose_material3_internal_MappedInteractionSource$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_MenuPosition$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_MenuPosition$stableprop|#static{}androidx_compose_material3_internal_MenuPosition$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_MutableWindowInsets$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_MutableWindowInsets$stableprop|#static{}androidx_compose_material3_internal_MutableWindowInsets$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNode$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNode$stableprop|#static{}androidx_compose_material3_internal_ParentSemanticsNode$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop|#static{}androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop|#static{}androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_PredictiveBack$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_PredictiveBack$stableprop|#static{}androidx_compose_material3_internal_PredictiveBack$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop|#static{}androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop|#static{}androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop[0] +final val androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop|#static{}androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop[0] +final val androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop|#static{}androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop[0] +final val androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop|#static{}androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop[0] +final val androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop|#static{}androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop[0] +final val androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop|#static{}androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarMediumTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarTokens$stableprop|#static{}androidx_compose_material3_tokens_AppBarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_AssistChipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AssistChipTokens$stableprop|#static{}androidx_compose_material3_tokens_AssistChipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_BadgeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BadgeTokens$stableprop|#static{}androidx_compose_material3_tokens_BadgeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_BaselineButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BaselineButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_BaselineButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_BottomAppBarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BottomAppBarTokens$stableprop|#static{}androidx_compose_material3_tokens_BottomAppBarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonMediumTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonMediumTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonMediumTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_CheckboxTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_CheckboxTokens$stableprop|#static{}androidx_compose_material3_tokens_CheckboxTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop|#static{}androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorDarkTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorDarkTokens$stableprop|#static{}androidx_compose_material3_tokens_ColorDarkTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorLightTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorLightTokens$stableprop|#static{}androidx_compose_material3_tokens_ColorLightTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DateInputModalTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DateInputModalTokens$stableprop|#static{}androidx_compose_material3_tokens_DateInputModalTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DatePickerModalTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DatePickerModalTokens$stableprop|#static{}androidx_compose_material3_tokens_DatePickerModalTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DialogTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DialogTokens$stableprop|#static{}androidx_compose_material3_tokens_DialogTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DividerTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DividerTokens$stableprop|#static{}androidx_compose_material3_tokens_DividerTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DockedToolbarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DockedToolbarTokens$stableprop|#static{}androidx_compose_material3_tokens_DockedToolbarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_DragHandleTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DragHandleTokens$stableprop|#static{}androidx_compose_material3_tokens_DragHandleTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedCardTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedCardTokens$stableprop|#static{}androidx_compose_material3_tokens_ElevatedCardTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevationTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevationTokens$stableprop|#static{}androidx_compose_material3_tokens_ElevationTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop|#static{}androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop|#static{}androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop|#static{}androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabBaselineTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabBaselineTokens$stableprop|#static{}androidx_compose_material3_tokens_FabBaselineTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_FabLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMediumTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMediumTokens$stableprop|#static{}androidx_compose_material3_tokens_FabMediumTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop|#static{}androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop|#static{}androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop|#static{}androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_FabSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledCardTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledCardTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledCardTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilterChipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilterChipTokens$stableprop|#static{}androidx_compose_material3_tokens_FilterChipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop|#static{}androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_InputChipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_InputChipTokens$stableprop|#static{}androidx_compose_material3_tokens_InputChipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop|#static{}androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ListTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ListTokens$stableprop|#static{}androidx_compose_material3_tokens_ListTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop|#static{}androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_MenuTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MenuTokens$stableprop|#static{}androidx_compose_material3_tokens_MenuTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_MotionTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MotionTokens$stableprop|#static{}androidx_compose_material3_tokens_MotionTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationBarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop|#static{}androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedCardTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedCardTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedCardTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop|#static{}androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_PaletteTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PaletteTokens$stableprop|#static{}androidx_compose_material3_tokens_PaletteTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_PlainTooltipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PlainTooltipTokens$stableprop|#static{}androidx_compose_material3_tokens_PlainTooltipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop|#static{}androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop|#static{}androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_RadioButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_RadioButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_RadioButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_RichTooltipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_RichTooltipTokens$stableprop|#static{}androidx_compose_material3_tokens_RichTooltipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ScrimTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ScrimTokens$stableprop|#static{}androidx_compose_material3_tokens_ScrimTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchBarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchBarTokens$stableprop|#static{}androidx_compose_material3_tokens_SearchBarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchViewTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchViewTokens$stableprop|#static{}androidx_compose_material3_tokens_SearchViewTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop|#static{}androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_ShapeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ShapeTokens$stableprop|#static{}androidx_compose_material3_tokens_ShapeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SheetBottomTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SheetBottomTokens$stableprop|#static{}androidx_compose_material3_tokens_SheetBottomTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SliderTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SliderTokens$stableprop|#static{}androidx_compose_material3_tokens_SliderTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SnackbarTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SnackbarTokens$stableprop|#static{}androidx_compose_material3_tokens_SnackbarTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop|#static{}androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop|#static{}androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop|#static{}androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardMotionTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardMotionTokens$stableprop|#static{}androidx_compose_material3_tokens_StandardMotionTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_StateTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StateTokens$stableprop|#static{}androidx_compose_material3_tokens_StateTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SuggestionChipTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SuggestionChipTokens$stableprop|#static{}androidx_compose_material3_tokens_SuggestionChipTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_SwitchTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SwitchTokens$stableprop|#static{}androidx_compose_material3_tokens_SwitchTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TextButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TextButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_TextButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimeInputTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimeInputTokens$stableprop|#static{}androidx_compose_material3_tokens_TimeInputTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimePickerTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimePickerTokens$stableprop|#static{}androidx_compose_material3_tokens_TimePickerTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TonalButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TonalButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_TonalButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypeScaleTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypeScaleTokens$stableprop|#static{}androidx_compose_material3_tokens_TypeScaleTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypefaceTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypefaceTokens$stableprop|#static{}androidx_compose_material3_tokens_TypefaceTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypographyTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypographyTokens$stableprop|#static{}androidx_compose_material3_tokens_TypographyTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop[0] +final val androidx.compose.material3.tokens/androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop // androidx.compose.material3.tokens/androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop|#static{}androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop[0] final val androidx.compose.material3/LocalAbsoluteTonalElevation // androidx.compose.material3/LocalAbsoluteTonalElevation|{}LocalAbsoluteTonalElevation[0] final fun <get-LocalAbsoluteTonalElevation>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.unit/Dp> // androidx.compose.material3/LocalAbsoluteTonalElevation.<get-LocalAbsoluteTonalElevation>|<get-LocalAbsoluteTonalElevation>(){}[0] final val androidx.compose.material3/LocalBasicAlertDialogOverride // androidx.compose.material3/LocalBasicAlertDialogOverride|{}LocalBasicAlertDialogOverride[0] @@ -3717,262 +3879,786 @@ final fun <get-LocalVerticalToolbarWithFabOverride>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material3/VerticalFloatingToolbarWithFabOverride> // androidx.compose.material3/LocalVerticalToolbarWithFabOverride.<get-LocalVerticalToolbarWithFabOverride>|<get-LocalVerticalToolbarWithFabOverride>(){}[0] final val androidx.compose.material3/LocalWideNavigationRailOverride // androidx.compose.material3/LocalWideNavigationRailOverride|{}LocalWideNavigationRailOverride[0] final fun <get-LocalWideNavigationRailOverride>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.material3/WideNavigationRailOverride> // androidx.compose.material3/LocalWideNavigationRailOverride.<get-LocalWideNavigationRailOverride>|<get-LocalWideNavigationRailOverride>(){}[0] +final val androidx.compose.material3/androidx_compose_material3_AlertDialogDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_AlertDialogDefaults$stableprop|#static{}androidx_compose_material3_AlertDialogDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_AnalogTimePickerState$stableprop // androidx.compose.material3/androidx_compose_material3_AnalogTimePickerState$stableprop|#static{}androidx_compose_material3_AnalogTimePickerState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_AppBarMenuState$stableprop // androidx.compose.material3/androidx_compose_material3_AppBarMenuState$stableprop|#static{}androidx_compose_material3_AppBarMenuState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_AppBarScopeImpl$stableprop // androidx.compose.material3/androidx_compose_material3_AppBarScopeImpl$stableprop|#static{}androidx_compose_material3_AppBarScopeImpl$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_AssistChipDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_AssistChipDefaults$stableprop|#static{}androidx_compose_material3_AssistChipDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BadgeDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_BadgeDefaults$stableprop|#static{}androidx_compose_material3_BadgeDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BaseDatePickerStateImpl$stableprop // androidx.compose.material3/androidx_compose_material3_BaseDatePickerStateImpl$stableprop|#static{}androidx_compose_material3_BaseDatePickerStateImpl$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop|#static{}androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BottomAppBarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_BottomAppBarDefaults$stableprop|#static{}androidx_compose_material3_BottomAppBarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BottomSheetDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_BottomSheetDefaults$stableprop|#static{}androidx_compose_material3_BottomSheetDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_BottomSheetScaffoldState$stableprop // androidx.compose.material3/androidx_compose_material3_BottomSheetScaffoldState$stableprop|#static{}androidx_compose_material3_BottomSheetScaffoldState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonColors$stableprop|#static{}androidx_compose_material3_ButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonDefaults$stableprop|#static{}androidx_compose_material3_ButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonElevation$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonElevation$stableprop|#static{}androidx_compose_material3_ButtonElevation$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonGroupDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonGroupDefaults$stableprop|#static{}androidx_compose_material3_ButtonGroupDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonGroupElement$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonGroupElement$stableprop|#static{}androidx_compose_material3_ButtonGroupElement$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonGroupMenuState$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonGroupMenuState$stableprop|#static{}androidx_compose_material3_ButtonGroupMenuState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonGroupNode$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonGroupNode$stableprop|#static{}androidx_compose_material3_ButtonGroupNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonGroupParentData$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonGroupParentData$stableprop|#static{}androidx_compose_material3_ButtonGroupParentData$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ButtonShapes$stableprop // androidx.compose.material3/androidx_compose_material3_ButtonShapes$stableprop|#static{}androidx_compose_material3_ButtonShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CalendarLocale$stableprop // androidx.compose.material3/androidx_compose_material3_CalendarLocale$stableprop|#static{}androidx_compose_material3_CalendarLocale$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CardColors$stableprop // androidx.compose.material3/androidx_compose_material3_CardColors$stableprop|#static{}androidx_compose_material3_CardColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CardDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_CardDefaults$stableprop|#static{}androidx_compose_material3_CardDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CardElevation$stableprop // androidx.compose.material3/androidx_compose_material3_CardElevation$stableprop|#static{}androidx_compose_material3_CardElevation$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CheckboxColors$stableprop // androidx.compose.material3/androidx_compose_material3_CheckboxColors$stableprop|#static{}androidx_compose_material3_CheckboxColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CheckboxDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_CheckboxDefaults$stableprop|#static{}androidx_compose_material3_CheckboxDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ChipBorder$stableprop // androidx.compose.material3/androidx_compose_material3_ChipBorder$stableprop|#static{}androidx_compose_material3_ChipBorder$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ChipColors$stableprop // androidx.compose.material3/androidx_compose_material3_ChipColors$stableprop|#static{}androidx_compose_material3_ChipColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ChipElevation$stableprop // androidx.compose.material3/androidx_compose_material3_ChipElevation$stableprop|#static{}androidx_compose_material3_ChipElevation$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ClickableAppBarItem$stableprop // androidx.compose.material3/androidx_compose_material3_ClickableAppBarItem$stableprop|#static{}androidx_compose_material3_ClickableAppBarItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ClickableButtonGroupItem$stableprop // androidx.compose.material3/androidx_compose_material3_ClickableButtonGroupItem$stableprop|#static{}androidx_compose_material3_ClickableButtonGroupItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ClockDialModifier$stableprop // androidx.compose.material3/androidx_compose_material3_ClockDialModifier$stableprop|#static{}androidx_compose_material3_ClockDialModifier$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ClockDialNode$stableprop // androidx.compose.material3/androidx_compose_material3_ClockDialNode$stableprop|#static{}androidx_compose_material3_ClockDialNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ClockFaceSizeModifier$stableprop // androidx.compose.material3/androidx_compose_material3_ClockFaceSizeModifier$stableprop|#static{}androidx_compose_material3_ClockFaceSizeModifier$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ColorScheme$stableprop // androidx.compose.material3/androidx_compose_material3_ColorScheme$stableprop|#static{}androidx_compose_material3_ColorScheme$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CustomAppBarItem$stableprop // androidx.compose.material3/androidx_compose_material3_CustomAppBarItem$stableprop|#static{}androidx_compose_material3_CustomAppBarItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_CustomButtonGroupItem$stableprop // androidx.compose.material3/androidx_compose_material3_CustomButtonGroupItem$stableprop|#static{}androidx_compose_material3_CustomButtonGroupItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DateInputValidator$stableprop // androidx.compose.material3/androidx_compose_material3_DateInputValidator$stableprop|#static{}androidx_compose_material3_DateInputValidator$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DatePickerColors$stableprop // androidx.compose.material3/androidx_compose_material3_DatePickerColors$stableprop|#static{}androidx_compose_material3_DatePickerColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DatePickerDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_DatePickerDefaults$stableprop|#static{}androidx_compose_material3_DatePickerDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DateRangePickerDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_DateRangePickerDefaults$stableprop|#static{}androidx_compose_material3_DateRangePickerDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop|#static{}androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop|#static{}androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop|#static{}androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultNavigationBarOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultNavigationBarOverride$stableprop|#static{}androidx_compose_material3_DefaultNavigationBarOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultNavigationRailOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultNavigationRailOverride$stableprop|#static{}androidx_compose_material3_DefaultNavigationRailOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop|#static{}androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop|#static{}androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop|#static{}androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop // androidx.compose.material3/androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop|#static{}androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DividerDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_DividerDefaults$stableprop|#static{}androidx_compose_material3_DividerDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DragHandleColors$stableprop // androidx.compose.material3/androidx_compose_material3_DragHandleColors$stableprop|#static{}androidx_compose_material3_DragHandleColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DragHandleShapes$stableprop // androidx.compose.material3/androidx_compose_material3_DragHandleShapes$stableprop|#static{}androidx_compose_material3_DragHandleShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DragHandleSizes$stableprop // androidx.compose.material3/androidx_compose_material3_DragHandleSizes$stableprop|#static{}androidx_compose_material3_DragHandleSizes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DrawerDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_DrawerDefaults$stableprop|#static{}androidx_compose_material3_DrawerDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DrawerPredictiveBackState$stableprop // androidx.compose.material3/androidx_compose_material3_DrawerPredictiveBackState$stableprop|#static{}androidx_compose_material3_DrawerPredictiveBackState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_DrawerState$stableprop // androidx.compose.material3/androidx_compose_material3_DrawerState$stableprop|#static{}androidx_compose_material3_DrawerState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_EnlargeOnPressElement$stableprop // androidx.compose.material3/androidx_compose_material3_EnlargeOnPressElement$stableprop|#static{}androidx_compose_material3_EnlargeOnPressElement$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_EnlargeOnPressNode$stableprop // androidx.compose.material3/androidx_compose_material3_EnlargeOnPressNode$stableprop|#static{}androidx_compose_material3_EnlargeOnPressNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop // androidx.compose.material3/androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop|#static{}androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop|#static{}androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop|#static{}androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop|#static{}androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FabPlacement$stableprop // androidx.compose.material3/androidx_compose_material3_FabPlacement$stableprop|#static{}androidx_compose_material3_FabPlacement$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FabVisibleModifier$stableprop // androidx.compose.material3/androidx_compose_material3_FabVisibleModifier$stableprop|#static{}androidx_compose_material3_FabVisibleModifier$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FabVisibleNode$stableprop // androidx.compose.material3/androidx_compose_material3_FabVisibleNode$stableprop|#static{}androidx_compose_material3_FabVisibleNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FilterChipDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_FilterChipDefaults$stableprop|#static{}androidx_compose_material3_FilterChipDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingActionButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingActionButtonDefaults$stableprop|#static{}androidx_compose_material3_FloatingActionButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingActionButtonElevation$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingActionButtonElevation$stableprop|#static{}androidx_compose_material3_FloatingActionButtonElevation$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingToolbarColors$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingToolbarColors$stableprop|#static{}androidx_compose_material3_FloatingToolbarColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults$stableprop|#static{}androidx_compose_material3_FloatingToolbarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop|#static{}androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop|#static{}androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop|#static{}androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop|#static{}androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IconButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_IconButtonColors$stableprop|#static{}androidx_compose_material3_IconButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IconButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_IconButtonDefaults$stableprop|#static{}androidx_compose_material3_IconButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IconButtonShapes$stableprop // androidx.compose.material3/androidx_compose_material3_IconButtonShapes$stableprop|#static{}androidx_compose_material3_IconButtonShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IconToggleButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_IconToggleButtonColors$stableprop|#static{}androidx_compose_material3_IconToggleButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IconToggleButtonShapes$stableprop // androidx.compose.material3/androidx_compose_material3_IconToggleButtonShapes$stableprop|#static{}androidx_compose_material3_IconToggleButtonShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IndicatorLineElement$stableprop // androidx.compose.material3/androidx_compose_material3_IndicatorLineElement$stableprop|#static{}androidx_compose_material3_IndicatorLineElement$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_IndicatorLineNode$stableprop // androidx.compose.material3/androidx_compose_material3_IndicatorLineNode$stableprop|#static{}androidx_compose_material3_IndicatorLineNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_InputChipDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_InputChipDefaults$stableprop|#static{}androidx_compose_material3_InputChipDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ListItemColors$stableprop // androidx.compose.material3/androidx_compose_material3_ListItemColors$stableprop|#static{}androidx_compose_material3_ListItemColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ListItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ListItemDefaults$stableprop|#static{}androidx_compose_material3_ListItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_LoadingIndicatorDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_LoadingIndicatorDefaults$stableprop|#static{}androidx_compose_material3_LoadingIndicatorDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MaterialShapes$stableprop // androidx.compose.material3/androidx_compose_material3_MaterialShapes$stableprop|#static{}androidx_compose_material3_MaterialShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MaterialTheme$stableprop // androidx.compose.material3/androidx_compose_material3_MaterialTheme$stableprop|#static{}androidx_compose_material3_MaterialTheme$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MenuDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_MenuDefaults$stableprop|#static{}androidx_compose_material3_MenuDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MenuItemColors$stableprop // androidx.compose.material3/androidx_compose_material3_MenuItemColors$stableprop|#static{}androidx_compose_material3_MenuItemColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifier$stableprop // androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifier$stableprop|#static{}androidx_compose_material3_MinimumInteractiveModifier$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifierNode$stableprop // androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifierNode$stableprop|#static{}androidx_compose_material3_MinimumInteractiveModifierNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ModalBottomSheetDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ModalBottomSheetDefaults$stableprop|#static{}androidx_compose_material3_ModalBottomSheetDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ModalBottomSheetProperties$stableprop // androidx.compose.material3/androidx_compose_material3_ModalBottomSheetProperties$stableprop|#static{}androidx_compose_material3_ModalBottomSheetProperties$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop|#static{}androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailProperties$stableprop // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailProperties$stableprop|#static{}androidx_compose_material3_ModalWideNavigationRailProperties$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailState$stableprop // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailState$stableprop|#static{}androidx_compose_material3_ModalWideNavigationRailState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationBarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationBarDefaults$stableprop|#static{}androidx_compose_material3_NavigationBarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationBarItemColors$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationBarItemColors$stableprop|#static{}androidx_compose_material3_NavigationBarItemColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationBarItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationBarItemDefaults$stableprop|#static{}androidx_compose_material3_NavigationBarItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationBarOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationBarOverrideScope$stableprop|#static{}androidx_compose_material3_NavigationBarOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationDrawerItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationDrawerItemDefaults$stableprop|#static{}androidx_compose_material3_NavigationDrawerItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationItemColors$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationItemColors$stableprop|#static{}androidx_compose_material3_NavigationItemColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationRailDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationRailDefaults$stableprop|#static{}androidx_compose_material3_NavigationRailDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationRailItemColors$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationRailItemColors$stableprop|#static{}androidx_compose_material3_NavigationRailItemColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationRailItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationRailItemDefaults$stableprop|#static{}androidx_compose_material3_NavigationRailItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_NavigationRailOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_NavigationRailOverrideScope$stableprop|#static{}androidx_compose_material3_NavigationRailOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_OutlinedTextFieldDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_OutlinedTextFieldDefaults$stableprop|#static{}androidx_compose_material3_OutlinedTextFieldDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_OverflowMeasurePolicy$stableprop // androidx.compose.material3/androidx_compose_material3_OverflowMeasurePolicy$stableprop|#static{}androidx_compose_material3_OverflowMeasurePolicy$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ProgressIndicatorDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ProgressIndicatorDefaults$stableprop|#static{}androidx_compose_material3_ProgressIndicatorDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RadioButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_RadioButtonColors$stableprop|#static{}androidx_compose_material3_RadioButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RadioButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_RadioButtonDefaults$stableprop|#static{}androidx_compose_material3_RadioButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RailPredictiveBackState$stableprop // androidx.compose.material3/androidx_compose_material3_RailPredictiveBackState$stableprop|#static{}androidx_compose_material3_RailPredictiveBackState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RangeSliderState$stableprop // androidx.compose.material3/androidx_compose_material3_RangeSliderState$stableprop|#static{}androidx_compose_material3_RangeSliderState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RichTooltipColors$stableprop // androidx.compose.material3/androidx_compose_material3_RichTooltipColors$stableprop|#static{}androidx_compose_material3_RichTooltipColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RippleConfiguration$stableprop // androidx.compose.material3/androidx_compose_material3_RippleConfiguration$stableprop|#static{}androidx_compose_material3_RippleConfiguration$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_RippleDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_RippleDefaults$stableprop|#static{}androidx_compose_material3_RippleDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ScaffoldDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ScaffoldDefaults$stableprop|#static{}androidx_compose_material3_ScaffoldDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SearchBarColors$stableprop // androidx.compose.material3/androidx_compose_material3_SearchBarColors$stableprop|#static{}androidx_compose_material3_SearchBarColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SearchBarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SearchBarDefaults$stableprop|#static{}androidx_compose_material3_SearchBarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SearchBarState$stableprop // androidx.compose.material3/androidx_compose_material3_SearchBarState$stableprop|#static{}androidx_compose_material3_SearchBarState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SegmentedButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_SegmentedButtonColors$stableprop|#static{}androidx_compose_material3_SegmentedButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop // androidx.compose.material3/androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop|#static{}androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SegmentedButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SegmentedButtonDefaults$stableprop|#static{}androidx_compose_material3_SegmentedButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SelectableChipColors$stableprop // androidx.compose.material3/androidx_compose_material3_SelectableChipColors$stableprop|#static{}androidx_compose_material3_SelectableChipColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SelectableChipElevation$stableprop // androidx.compose.material3/androidx_compose_material3_SelectableChipElevation$stableprop|#static{}androidx_compose_material3_SelectableChipElevation$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SelectedRangeInfo$stableprop // androidx.compose.material3/androidx_compose_material3_SelectedRangeInfo$stableprop|#static{}androidx_compose_material3_SelectedRangeInfo$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ShapeDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ShapeDefaults$stableprop|#static{}androidx_compose_material3_ShapeDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_Shapes$stableprop // androidx.compose.material3/androidx_compose_material3_Shapes$stableprop|#static{}androidx_compose_material3_Shapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SheetState$stableprop // androidx.compose.material3/androidx_compose_material3_SheetState$stableprop|#static{}androidx_compose_material3_SheetState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ShortNavigationBarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarDefaults$stableprop|#static{}androidx_compose_material3_ShortNavigationBarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop|#static{}androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop|#static{}androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop|#static{}androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SliderColors$stableprop // androidx.compose.material3/androidx_compose_material3_SliderColors$stableprop|#static{}androidx_compose_material3_SliderColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SliderDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SliderDefaults$stableprop|#static{}androidx_compose_material3_SliderDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SliderPositions$stableprop // androidx.compose.material3/androidx_compose_material3_SliderPositions$stableprop|#static{}androidx_compose_material3_SliderPositions$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SliderState$stableprop // androidx.compose.material3/androidx_compose_material3_SliderState$stableprop|#static{}androidx_compose_material3_SliderState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SnackbarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SnackbarDefaults$stableprop|#static{}androidx_compose_material3_SnackbarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SnackbarHostState$stableprop // androidx.compose.material3/androidx_compose_material3_SnackbarHostState$stableprop|#static{}androidx_compose_material3_SnackbarHostState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SplitButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SplitButtonDefaults$stableprop|#static{}androidx_compose_material3_SplitButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SplitButtonShapes$stableprop // androidx.compose.material3/androidx_compose_material3_SplitButtonShapes$stableprop|#static{}androidx_compose_material3_SplitButtonShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SuggestionChipDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SuggestionChipDefaults$stableprop|#static{}androidx_compose_material3_SuggestionChipDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop|#static{}androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxState$stableprop // androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxState$stableprop|#static{}androidx_compose_material3_SwipeToDismissBoxState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SwitchColors$stableprop // androidx.compose.material3/androidx_compose_material3_SwitchColors$stableprop|#static{}androidx_compose_material3_SwitchColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_SwitchDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_SwitchDefaults$stableprop|#static{}androidx_compose_material3_SwitchDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TabIndicatorModifier$stableprop // androidx.compose.material3/androidx_compose_material3_TabIndicatorModifier$stableprop|#static{}androidx_compose_material3_TabIndicatorModifier$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TabIndicatorOffsetNode$stableprop // androidx.compose.material3/androidx_compose_material3_TabIndicatorOffsetNode$stableprop|#static{}androidx_compose_material3_TabIndicatorOffsetNode$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TabPosition$stableprop // androidx.compose.material3/androidx_compose_material3_TabPosition$stableprop|#static{}androidx_compose_material3_TabPosition$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TabRowDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TabRowDefaults$stableprop|#static{}androidx_compose_material3_TabRowDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TextFieldColors$stableprop // androidx.compose.material3/androidx_compose_material3_TextFieldColors$stableprop|#static{}androidx_compose_material3_TextFieldColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TextFieldDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TextFieldDefaults$stableprop|#static{}androidx_compose_material3_TextFieldDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition$stableprop // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition$stableprop|#static{}androidx_compose_material3_TextFieldLabelPosition$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Above$stableprop // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Above$stableprop|#static{}androidx_compose_material3_TextFieldLabelPosition_Above$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop|#static{}androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TimePickerColors$stableprop // androidx.compose.material3/androidx_compose_material3_TimePickerColors$stableprop|#static{}androidx_compose_material3_TimePickerColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TimePickerDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TimePickerDefaults$stableprop|#static{}androidx_compose_material3_TimePickerDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TimePickerDialogDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TimePickerDialogDefaults$stableprop|#static{}androidx_compose_material3_TimePickerDialogDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleButtonColors$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleButtonColors$stableprop|#static{}androidx_compose_material3_ToggleButtonColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleButtonDefaults$stableprop|#static{}androidx_compose_material3_ToggleButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleButtonShapes$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleButtonShapes$stableprop|#static{}androidx_compose_material3_ToggleButtonShapes$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop|#static{}androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleableAppBarItem$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleableAppBarItem$stableprop|#static{}androidx_compose_material3_ToggleableAppBarItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_ToggleableButtonGroupItem$stableprop // androidx.compose.material3/androidx_compose_material3_ToggleableButtonGroupItem$stableprop|#static{}androidx_compose_material3_ToggleableButtonGroupItem$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TonalPalette$stableprop // androidx.compose.material3/androidx_compose_material3_TonalPalette$stableprop|#static{}androidx_compose_material3_TonalPalette$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TooltipDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TooltipDefaults$stableprop|#static{}androidx_compose_material3_TooltipDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TooltipScopeImpl$stableprop // androidx.compose.material3/androidx_compose_material3_TooltipScopeImpl$stableprop|#static{}androidx_compose_material3_TooltipScopeImpl$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TopAppBarColors$stableprop // androidx.compose.material3/androidx_compose_material3_TopAppBarColors$stableprop|#static{}androidx_compose_material3_TopAppBarColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TopAppBarDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_TopAppBarDefaults$stableprop|#static{}androidx_compose_material3_TopAppBarDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TopAppBarState$stableprop // androidx.compose.material3/androidx_compose_material3_TopAppBarState$stableprop|#static{}androidx_compose_material3_TopAppBarState$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop|#static{}androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_Typography$stableprop // androidx.compose.material3/androidx_compose_material3_Typography$stableprop|#static{}androidx_compose_material3_Typography$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_VerticalDragHandleDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_VerticalDragHandleDefaults$stableprop|#static{}androidx_compose_material3_VerticalDragHandleDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop|#static{}androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WideNavigationRailColors$stableprop // androidx.compose.material3/androidx_compose_material3_WideNavigationRailColors$stableprop|#static{}androidx_compose_material3_WideNavigationRailColors$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WideNavigationRailDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_WideNavigationRailDefaults$stableprop|#static{}androidx_compose_material3_WideNavigationRailDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WideNavigationRailItemDefaults$stableprop // androidx.compose.material3/androidx_compose_material3_WideNavigationRailItemDefaults$stableprop|#static{}androidx_compose_material3_WideNavigationRailItemDefaults$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WideNavigationRailOverrideScope$stableprop // androidx.compose.material3/androidx_compose_material3_WideNavigationRailOverrideScope$stableprop|#static{}androidx_compose_material3_WideNavigationRailOverrideScope$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WideNavigationRailStateImpl$stableprop // androidx.compose.material3/androidx_compose_material3_WideNavigationRailStateImpl$stableprop|#static{}androidx_compose_material3_WideNavigationRailStateImpl$stableprop[0] +final val androidx.compose.material3/androidx_compose_material3_WindowBoundsCalculator$stableprop // androidx.compose.material3/androidx_compose_material3_WindowBoundsCalculator$stableprop|#static{}androidx_compose_material3_WindowBoundsCalculator$stableprop[0] final val androidx.compose.material3/isPm // androidx.compose.material3/isPm|@androidx.compose.material3.TimePickerState{}isPm[0] final fun (androidx.compose.material3/TimePickerState).<get-isPm>(): kotlin/Boolean // androidx.compose.material3/isPm.<get-isPm>|<get-isPm>@androidx.compose.material3.TimePickerState(){}[0] -final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.material3/NavigationBarItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/NavigationBarItemColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/NavigationBarItem|NavigationBarItem@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.NavigationBarItemColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] +final fun (androidx.compose.foundation.layout/RowScope).androidx.compose.material3/NavigationBarItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/NavigationBarItemColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/NavigationBarItem|NavigationBarItem@androidx.compose.foundation.layout.RowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.NavigationBarItemColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun (androidx.compose.material3/ColorScheme).androidx.compose.material3/contentColorFor(androidx.compose.ui.graphics/Color): androidx.compose.ui.graphics/Color // androidx.compose.material3/contentColorFor|contentColorFor@androidx.compose.material3.ColorScheme(androidx.compose.ui.graphics.Color){}[0] final fun (androidx.compose.material3/ColorScheme).androidx.compose.material3/surfaceColorAtElevation(androidx.compose.ui.unit/Dp): androidx.compose.ui.graphics/Color // androidx.compose.material3/surfaceColorAtElevation|surfaceColorAtElevation@androidx.compose.material3.ColorScheme(androidx.compose.ui.unit.Dp){}[0] -final fun (androidx.compose.material3/FloatingActionButtonMenuScope).androidx.compose.material3/FloatingActionButtonMenuItem(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/FloatingActionButtonMenuItem|FloatingActionButtonMenuItem@androidx.compose.material3.FloatingActionButtonMenuScope(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun (androidx.compose.material3/MultiChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SegmentedButtonColors = ..., androidx.compose.foundation/BorderStroke = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.MultiChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors;androidx.compose.foundation.BorderStroke;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.compose.material3/MultiChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SegmentedButtonColors = ..., androidx.compose.foundation/BorderStroke = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.MultiChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors;androidx.compose.foundation.BorderStroke;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.compose.material3/SingleChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SegmentedButtonColors = ..., androidx.compose.foundation/BorderStroke = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.SingleChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors;androidx.compose.foundation.BorderStroke;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.compose.material3/SingleChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SegmentedButtonColors = ..., androidx.compose.foundation/BorderStroke = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.SingleChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors;androidx.compose.foundation.BorderStroke;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.compose.material3/TooltipScope).androidx.compose.material3/PlainTooltip(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/DpSize = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/PlainTooltip|PlainTooltip@androidx.compose.material3.TooltipScope(androidx.compose.ui.Modifier;androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.compose.material3/TooltipScope).androidx.compose.material3/RichTooltip(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.unit/DpSize = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/RichTooltipColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/RichTooltip|RichTooltip@androidx.compose.material3.TooltipScope(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.material3.RichTooltipColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] +final fun (androidx.compose.material3/FloatingActionButtonMenuScope).androidx.compose.material3/FloatingActionButtonMenuItem(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FloatingActionButtonMenuItem|FloatingActionButtonMenuItem@androidx.compose.material3.FloatingActionButtonMenuScope(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/MultiChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SegmentedButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.MultiChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/MultiChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SegmentedButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.MultiChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/SingleChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SegmentedButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.SingleChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/SingleChoiceSegmentedButtonRowScope).androidx.compose.material3/SegmentedButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.graphics/Shape, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SegmentedButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SegmentedButton|SegmentedButton@androidx.compose.material3.SingleChoiceSegmentedButtonRowScope(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.graphics.Shape;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SegmentedButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/TooltipScope).androidx.compose.material3/PlainTooltip(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/DpSize, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PlainTooltip|PlainTooltip@androidx.compose.material3.TooltipScope(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.compose.material3/TooltipScope).androidx.compose.material3/RichTooltip(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/DpSize, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/RichTooltipColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/RichTooltip|RichTooltip@androidx.compose.material3.TooltipScope(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.DpSize;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.RichTooltipColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.material3.pulltorefresh/pullToRefresh(kotlin/Boolean, androidx.compose.material3.pulltorefresh/PullToRefreshState, kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>): androidx.compose.ui/Modifier // androidx.compose.material3.pulltorefresh/pullToRefresh|pullToRefresh@androidx.compose.ui.Modifier(kotlin.Boolean;androidx.compose.material3.pulltorefresh.PullToRefreshState;kotlin.Boolean;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.material3/animateFloatingActionButton(kotlin/Boolean, androidx.compose.ui/Alignment, kotlin/Float = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float>? = ...): androidx.compose.ui/Modifier // androidx.compose.material3/animateFloatingActionButton|animateFloatingActionButton@androidx.compose.ui.Modifier(kotlin.Boolean;androidx.compose.ui.Alignment;kotlin.Float;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.material3/minimumInteractiveComponentSize(): androidx.compose.ui/Modifier // androidx.compose.material3/minimumInteractiveComponentSize|minimumInteractiveComponentSize@androidx.compose.ui.Modifier(){}[0] final fun (androidx.graphics.shapes/Morph).androidx.compose.material3/toPath(kotlin/Float, androidx.compose.ui.graphics/Path = ..., kotlin/Int = ...): androidx.compose.ui.graphics/Path // androidx.compose.material3/toPath|toPath@androidx.graphics.shapes.Morph(kotlin.Float;androidx.compose.ui.graphics.Path;kotlin.Int){}[0] -final fun (androidx.graphics.shapes/RoundedPolygon).androidx.compose.material3/toPath(kotlin/Int = ...): androidx.compose.ui.graphics/Path // androidx.compose.material3/toPath|toPath@androidx.graphics.shapes.RoundedPolygon(kotlin.Int){}[0] -final fun (androidx.graphics.shapes/RoundedPolygon).androidx.compose.material3/toShape(kotlin/Int = ...): androidx.compose.ui.graphics/Shape // androidx.compose.material3/toShape|toShape@androidx.graphics.shapes.RoundedPolygon(kotlin.Int){}[0] -final fun androidx.compose.material3.carousel/HorizontalCenteredHeroCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function2<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.material3.carousel/HorizontalCenteredHeroCarousel|HorizontalCenteredHeroCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function2<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function2<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel|HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function2<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function2<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel|HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;kotlin.Function2<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.material3.carousel/HorizontalUncontainedCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function2<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.material3.carousel/HorizontalUncontainedCarousel|HorizontalUncontainedCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior;androidx.compose.foundation.layout.PaddingValues;kotlin.Function2<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.material3.carousel/HorizontalUncontainedCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.gestures/TargetedFlingBehavior = ..., kotlin/Boolean = ..., androidx.compose.foundation.layout/PaddingValues = ..., kotlin/Function2<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, kotlin/Unit>) // androidx.compose.material3.carousel/HorizontalUncontainedCarousel|HorizontalUncontainedCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior;kotlin.Boolean;androidx.compose.foundation.layout.PaddingValues;kotlin.Function2<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,kotlin.Unit>){}[0] -final fun androidx.compose.material3.carousel/rememberCarouselState(kotlin/Int = ..., kotlin/Function0<kotlin/Int>): androidx.compose.material3.carousel/CarouselState // androidx.compose.material3.carousel/rememberCarouselState|rememberCarouselState(kotlin.Int;kotlin.Function0<kotlin.Int>){}[0] -final fun androidx.compose.material3.pulltorefresh/PullToRefreshBox(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3.pulltorefresh/PullToRefreshState = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) // androidx.compose.material3.pulltorefresh/PullToRefreshBox|PullToRefreshBox(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.pulltorefresh.PullToRefreshState;androidx.compose.ui.Alignment;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>){}[0] +final fun (androidx.graphics.shapes/RoundedPolygon).androidx.compose.material3/toPath(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.graphics/Path // androidx.compose.material3/toPath|toPath@androidx.graphics.shapes.RoundedPolygon(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun (androidx.graphics.shapes/RoundedPolygon).androidx.compose.material3/toShape(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.graphics/Shape // androidx.compose.material3/toShape|toShape@androidx.graphics.shapes.RoundedPolygon(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/HorizontalCenteredHeroCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function4<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.carousel/HorizontalCenteredHeroCarousel|HorizontalCenteredHeroCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function4<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/TargetedFlingBehavior?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function4<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel|HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function4<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function4<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.carousel/HorizontalMultiBrowseCarousel|HorizontalMultiBrowseCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function4<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/HorizontalUncontainedCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/TargetedFlingBehavior?, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function4<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.carousel/HorizontalUncontainedCarousel|HorizontalUncontainedCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior?;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function4<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/HorizontalUncontainedCarousel(androidx.compose.material3.carousel/CarouselState, androidx.compose.ui.unit/Dp, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.gestures/TargetedFlingBehavior?, kotlin/Boolean, androidx.compose.foundation.layout/PaddingValues?, kotlin/Function4<androidx.compose.material3.carousel/CarouselItemScope, kotlin/Int, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.carousel/HorizontalUncontainedCarousel|HorizontalUncontainedCarousel(androidx.compose.material3.carousel.CarouselState;androidx.compose.ui.unit.Dp;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.gestures.TargetedFlingBehavior?;kotlin.Boolean;androidx.compose.foundation.layout.PaddingValues?;kotlin.Function4<androidx.compose.material3.carousel.CarouselItemScope,kotlin.Int,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_Arrangement$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Arrangement$stableprop_getter|androidx_compose_material3_carousel_Arrangement$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselDefaults$stableprop_getter|androidx_compose_material3_carousel_CarouselDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop_getter|androidx_compose_material3_carousel_CarouselItemDrawInfoImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop_getter|androidx_compose_material3_carousel_CarouselItemScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPageSize$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPageSize$stableprop_getter|androidx_compose_material3_carousel_CarouselPageSize$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPagerState$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselPagerState$stableprop_getter|androidx_compose_material3_carousel_CarouselPagerState$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselState$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_CarouselState$stableprop_getter|androidx_compose_material3_carousel_CarouselState$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_Keyline$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Keyline$stableprop_getter|androidx_compose_material3_carousel_Keyline$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_KeylineList$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_KeylineList$stableprop_getter|androidx_compose_material3_carousel_KeylineList$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/androidx_compose_material3_carousel_Strategy$stableprop_getter(): kotlin/Int // androidx.compose.material3.carousel/androidx_compose_material3_carousel_Strategy$stableprop_getter|androidx_compose_material3_carousel_Strategy$stableprop_getter(){}[0] +final fun androidx.compose.material3.carousel/rememberCarouselState(kotlin/Int, kotlin/Function0<kotlin/Int>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3.carousel/CarouselState // androidx.compose.material3.carousel/rememberCarouselState|rememberCarouselState(kotlin.Int;kotlin.Function0<kotlin.Int>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop_getter|androidx_compose_material3_internal_AnchorAlignmentOffsetPosition$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop_getter|androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Horizontal$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop_getter|androidx_compose_material3_internal_AnchorAlignmentOffsetPosition_Vertical$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop_getter|androidx_compose_material3_internal_AnchoredDragFinishedSignal$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop_getter|androidx_compose_material3_internal_AnchoredDraggableDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableState$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnchoredDraggableState$stableprop_getter|androidx_compose_material3_internal_AnchoredDraggableState$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_AnimatedShapeState$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_AnimatedShapeState$stableprop_getter|androidx_compose_material3_internal_AnimatedShapeState$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventCompat$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventCompat$stableprop_getter|androidx_compose_material3_internal_BackEventCompat$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_Completed$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_Completed$stableprop_getter|androidx_compose_material3_internal_BackEventProgress_Completed$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop_getter|androidx_compose_material3_internal_BackEventProgress_InProgress$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop_getter|androidx_compose_material3_internal_BackEventProgress_NotRunning$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipDefaults$stableprop_getter|androidx_compose_material3_internal_BasicTooltipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipStrings$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_BasicTooltipStrings$stableprop_getter|androidx_compose_material3_internal_BasicTooltipStrings$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarDate$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarDate$stableprop_getter|androidx_compose_material3_internal_CalendarDate$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarModel$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarModel$stableprop_getter|androidx_compose_material3_internal_CalendarModel$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarMonth$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_CalendarMonth$stableprop_getter|androidx_compose_material3_internal_CalendarMonth$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNode$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNode$stableprop_getter|androidx_compose_material3_internal_ChildSemanticsNode$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop_getter|androidx_compose_material3_internal_ChildSemanticsNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_DateInputFormat$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_DateInputFormat$stableprop_getter|androidx_compose_material3_internal_DateInputFormat$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop_getter|androidx_compose_material3_internal_DraggableAnchorsConfig$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop_getter|androidx_compose_material3_internal_DropdownMenuPositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_Icons$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons$stableprop_getter|androidx_compose_material3_internal_Icons$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored$stableprop_getter|androidx_compose_material3_internal_Icons_AutoMirrored$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop_getter|androidx_compose_material3_internal_Icons_AutoMirrored_Filled$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Filled$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Filled$stableprop_getter|androidx_compose_material3_internal_Icons_Filled$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Outlined$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_Icons_Outlined$stableprop_getter|androidx_compose_material3_internal_Icons_Outlined$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_InternalAtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_InternalAtomicReference$stableprop_getter|androidx_compose_material3_internal_InternalAtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_InternalMutatorMutex$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_InternalMutatorMutex$stableprop_getter|androidx_compose_material3_internal_InternalMutatorMutex$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_MappedInteractionSource$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_MappedInteractionSource$stableprop_getter|androidx_compose_material3_internal_MappedInteractionSource$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_MenuPosition$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_MenuPosition$stableprop_getter|androidx_compose_material3_internal_MenuPosition$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_MutableWindowInsets$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_MutableWindowInsets$stableprop_getter|androidx_compose_material3_internal_MutableWindowInsets$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNode$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNode$stableprop_getter|androidx_compose_material3_internal_ParentSemanticsNode$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop_getter|androidx_compose_material3_internal_ParentSemanticsNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop_getter|androidx_compose_material3_internal_ParentSemanticsNodeKey$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_material3_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_PredictiveBack$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_PredictiveBack$stableprop_getter|androidx_compose_material3_internal_PredictiveBack$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop_getter|androidx_compose_material3_internal_WindowAlignmentMarginPosition$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop_getter|androidx_compose_material3_internal_WindowAlignmentMarginPosition_Horizontal$stableprop_getter(){}[0] +final fun androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop_getter(): kotlin/Int // androidx.compose.material3.internal/androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop_getter|androidx_compose_material3_internal_WindowAlignmentMarginPosition_Vertical$stableprop_getter(){}[0] +final fun androidx.compose.material3.pulltorefresh/PullToRefreshBox(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3.pulltorefresh/PullToRefreshState?, androidx.compose.ui/Alignment?, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3.pulltorefresh/PullToRefreshBox|PullToRefreshBox(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.pulltorefresh.PullToRefreshState?;androidx.compose.ui.Alignment?;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3.pulltorefresh/PullToRefreshState(): androidx.compose.material3.pulltorefresh/PullToRefreshState // androidx.compose.material3.pulltorefresh/PullToRefreshState|PullToRefreshState(){}[0] -final fun androidx.compose.material3.pulltorefresh/rememberPullToRefreshState(): androidx.compose.material3.pulltorefresh/PullToRefreshState // androidx.compose.material3.pulltorefresh/rememberPullToRefreshState|rememberPullToRefreshState(){}[0] -final fun androidx.compose.material3/AlertDialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.window.DialogProperties;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.window/DialogProperties = ...) // androidx.compose.material3/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.window.DialogProperties){}[0] -final fun androidx.compose.material3/AppBarColumn(kotlin/Function1<androidx.compose.material3/AppBarMenuState, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.material3/AppBarColumnScope, kotlin/Unit>) // androidx.compose.material3/AppBarColumn|AppBarColumn(kotlin.Function1<androidx.compose.material3.AppBarMenuState,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Int;kotlin.Function1<androidx.compose.material3.AppBarColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/AppBarRow(kotlin/Function1<androidx.compose.material3/AppBarMenuState, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.material3/AppBarRowScope, kotlin/Unit>) // androidx.compose.material3/AppBarRow|AppBarRow(kotlin.Function1<androidx.compose.material3.AppBarMenuState,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Int;kotlin.Function1<androidx.compose.material3.AppBarRowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/AssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/AssistChip|AssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/AssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.material3/ChipBorder? = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ...) // androidx.compose.material3/AssistChip|AssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource){}[0] -final fun androidx.compose.material3/Badge(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? = ...) // androidx.compose.material3/Badge|Badge(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>?){}[0] -final fun androidx.compose.material3/BadgedBox(kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.foundation.layout/BoxScope, kotlin/Unit>) // androidx.compose.material3/BadgedBox|BadgedBox(kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.foundation.layout.BoxScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/BasicAlertDialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/BasicAlertDialog|BasicAlertDialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.window.DialogProperties;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/BottomAppBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/BottomAppBarScrollBehavior? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.BottomAppBarScrollBehavior?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/BottomAppBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/BottomAppBar(kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.layout/WindowInsets = ...) // androidx.compose.material3/BottomAppBar|BottomAppBar(kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.layout.WindowInsets){}[0] -final fun androidx.compose.material3/BottomAppBar(kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/BottomAppBarScrollBehavior? = ...) // androidx.compose.material3/BottomAppBar|BottomAppBar(kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.BottomAppBarScrollBehavior?){}[0] +final fun androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop_getter|androidx_compose_material3_pulltorefresh_PullToRefreshDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop_getter(): kotlin/Int // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop_getter|androidx_compose_material3_pulltorefresh_PullToRefreshElement$stableprop_getter(){}[0] +final fun androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop_getter|androidx_compose_material3_pulltorefresh_PullToRefreshModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3.pulltorefresh/androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop_getter|androidx_compose_material3_pulltorefresh_PullToRefreshStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3.pulltorefresh/rememberPullToRefreshState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.material3.pulltorefresh/PullToRefreshState // androidx.compose.material3.pulltorefresh/rememberPullToRefreshState|rememberPullToRefreshState(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarLargeFlexibleTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarLargeTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarMediumFlexibleTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarMediumTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarMediumTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarSmallTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AppBarTokens$stableprop_getter|androidx_compose_material3_tokens_AppBarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_AssistChipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_AssistChipTokens$stableprop_getter|androidx_compose_material3_tokens_AssistChipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_BadgeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BadgeTokens$stableprop_getter|androidx_compose_material3_tokens_BadgeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_BaselineButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BaselineButtonTokens$stableprop_getter|androidx_compose_material3_tokens_BaselineButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_BottomAppBarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_BottomAppBarTokens$stableprop_getter|androidx_compose_material3_tokens_BottomAppBarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonGroupSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonLargeTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonMediumTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonMediumTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonMediumTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonSmallTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonXLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop_getter|androidx_compose_material3_tokens_ButtonXSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_CheckboxTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_CheckboxTokens$stableprop_getter|androidx_compose_material3_tokens_CheckboxTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop_getter|androidx_compose_material3_tokens_CircularProgressIndicatorTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorDarkTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorDarkTokens$stableprop_getter|androidx_compose_material3_tokens_ColorDarkTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorLightTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ColorLightTokens$stableprop_getter|androidx_compose_material3_tokens_ColorLightTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop_getter|androidx_compose_material3_tokens_ConnectedButtonGroupSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DateInputModalTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DateInputModalTokens$stableprop_getter|androidx_compose_material3_tokens_DateInputModalTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DatePickerModalTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DatePickerModalTokens$stableprop_getter|androidx_compose_material3_tokens_DatePickerModalTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DialogTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DialogTokens$stableprop_getter|androidx_compose_material3_tokens_DialogTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DividerTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DividerTokens$stableprop_getter|androidx_compose_material3_tokens_DividerTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DockedToolbarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DockedToolbarTokens$stableprop_getter|androidx_compose_material3_tokens_DockedToolbarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_DragHandleTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_DragHandleTokens$stableprop_getter|androidx_compose_material3_tokens_DragHandleTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop_getter|androidx_compose_material3_tokens_ElevatedButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedCardTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevatedCardTokens$stableprop_getter|androidx_compose_material3_tokens_ElevatedCardTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevationTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ElevationTokens$stableprop_getter|androidx_compose_material3_tokens_ElevationTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop_getter|androidx_compose_material3_tokens_ExpressiveMotionTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop_getter|androidx_compose_material3_tokens_ExtendedFabLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop_getter|androidx_compose_material3_tokens_ExtendedFabMediumTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop_getter|androidx_compose_material3_tokens_ExtendedFabPrimaryTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop_getter|androidx_compose_material3_tokens_ExtendedFabSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabBaselineTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabBaselineTokens$stableprop_getter|androidx_compose_material3_tokens_FabBaselineTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabLargeTokens$stableprop_getter|androidx_compose_material3_tokens_FabLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMediumTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMediumTokens$stableprop_getter|androidx_compose_material3_tokens_FabMediumTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop_getter|androidx_compose_material3_tokens_FabMenuBaselineTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop_getter|androidx_compose_material3_tokens_FabPrimaryContainerTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop_getter|androidx_compose_material3_tokens_FabSecondaryContainerTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FabSmallTokens$stableprop_getter|androidx_compose_material3_tokens_FabSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop_getter|androidx_compose_material3_tokens_FilledAutocompleteTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledButtonTokens$stableprop_getter|androidx_compose_material3_tokens_FilledButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledCardTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledCardTokens$stableprop_getter|androidx_compose_material3_tokens_FilledCardTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_FilledIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop_getter|androidx_compose_material3_tokens_FilledTextFieldTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop_getter|androidx_compose_material3_tokens_FilledTonalButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_FilledTonalIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilterChipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FilterChipTokens$stableprop_getter|androidx_compose_material3_tokens_FilterChipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop_getter|androidx_compose_material3_tokens_FloatingToolbarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_InputChipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_InputChipTokens$stableprop_getter|androidx_compose_material3_tokens_InputChipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_LargeIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop_getter|androidx_compose_material3_tokens_LinearProgressIndicatorTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ListTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ListTokens$stableprop_getter|androidx_compose_material3_tokens_ListTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop_getter|androidx_compose_material3_tokens_LoadingIndicatorTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_MediumIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_MenuTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MenuTokens$stableprop_getter|androidx_compose_material3_tokens_MenuTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_MotionTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_MotionTokens$stableprop_getter|androidx_compose_material3_tokens_MotionTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationBarHorizontalItemTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationBarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationBarVerticalItemTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationDrawerTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailBaselineItemTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailCollapsedTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailColorTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailExpandedTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailHorizontalItemTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop_getter|androidx_compose_material3_tokens_NavigationRailVerticalItemTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedAutocompleteTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedCardTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedCardTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedCardTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedSegmentedButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop_getter|androidx_compose_material3_tokens_OutlinedTextFieldTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_PaletteTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PaletteTokens$stableprop_getter|androidx_compose_material3_tokens_PaletteTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_PlainTooltipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PlainTooltipTokens$stableprop_getter|androidx_compose_material3_tokens_PlainTooltipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop_getter|androidx_compose_material3_tokens_PrimaryNavigationTabTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop_getter|androidx_compose_material3_tokens_ProgressIndicatorTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_RadioButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_RadioButtonTokens$stableprop_getter|androidx_compose_material3_tokens_RadioButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_RichTooltipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_RichTooltipTokens$stableprop_getter|androidx_compose_material3_tokens_RichTooltipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ScrimTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ScrimTokens$stableprop_getter|androidx_compose_material3_tokens_ScrimTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchBarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchBarTokens$stableprop_getter|androidx_compose_material3_tokens_SearchBarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchViewTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SearchViewTokens$stableprop_getter|androidx_compose_material3_tokens_SearchViewTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop_getter|androidx_compose_material3_tokens_SecondaryNavigationTabTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_ShapeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_ShapeTokens$stableprop_getter|androidx_compose_material3_tokens_ShapeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SheetBottomTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SheetBottomTokens$stableprop_getter|androidx_compose_material3_tokens_SheetBottomTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SliderTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SliderTokens$stableprop_getter|androidx_compose_material3_tokens_SliderTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_SmallIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SnackbarTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SnackbarTokens$stableprop_getter|androidx_compose_material3_tokens_SnackbarTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop_getter|androidx_compose_material3_tokens_SplitButtonLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop_getter|androidx_compose_material3_tokens_SplitButtonMediumTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop_getter|androidx_compose_material3_tokens_SplitButtonSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop_getter|androidx_compose_material3_tokens_SplitButtonXLargeTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop_getter|androidx_compose_material3_tokens_SplitButtonXSmallTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_StandardIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardMotionTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StandardMotionTokens$stableprop_getter|androidx_compose_material3_tokens_StandardMotionTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_StateTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_StateTokens$stableprop_getter|androidx_compose_material3_tokens_StateTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SuggestionChipTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SuggestionChipTokens$stableprop_getter|androidx_compose_material3_tokens_SuggestionChipTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_SwitchTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_SwitchTokens$stableprop_getter|androidx_compose_material3_tokens_SwitchTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TextButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TextButtonTokens$stableprop_getter|androidx_compose_material3_tokens_TextButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimeInputTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimeInputTokens$stableprop_getter|androidx_compose_material3_tokens_TimeInputTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimePickerTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TimePickerTokens$stableprop_getter|androidx_compose_material3_tokens_TimePickerTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TonalButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TonalButtonTokens$stableprop_getter|androidx_compose_material3_tokens_TonalButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypeScaleTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypeScaleTokens$stableprop_getter|androidx_compose_material3_tokens_TypeScaleTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypefaceTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypefaceTokens$stableprop_getter|androidx_compose_material3_tokens_TypefaceTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypographyTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_TypographyTokens$stableprop_getter|androidx_compose_material3_tokens_TypographyTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_XLargeIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3.tokens/androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop_getter(): kotlin/Int // androidx.compose.material3.tokens/androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop_getter|androidx_compose_material3_tokens_XSmallIconButtonTokens$stableprop_getter(){}[0] +final fun androidx.compose.material3/AlertDialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.window/DialogProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.window.DialogProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/AlertDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.window/DialogProperties?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/AlertDialog|AlertDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.window.DialogProperties?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/AppBarColumn(kotlin/Function3<androidx.compose.material3/AppBarMenuState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Int, kotlin/Function1<androidx.compose.material3/AppBarColumnScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/AppBarColumn|AppBarColumn(kotlin.Function3<androidx.compose.material3.AppBarMenuState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Int;kotlin.Function1<androidx.compose.material3.AppBarColumnScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/AppBarRow(kotlin/Function3<androidx.compose.material3/AppBarMenuState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Int, kotlin/Function1<androidx.compose.material3/AppBarRowScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/AppBarRow|AppBarRow(kotlin.Function3<androidx.compose.material3.AppBarMenuState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Int;kotlin.Function1<androidx.compose.material3.AppBarRowScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/AssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/AssistChip|AssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/AssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.material3/ChipBorder?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/AssistChip|AssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Badge(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Badge|Badge(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BadgedBox(kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.foundation.layout/BoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BadgedBox|BadgedBox(kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.foundation.layout.BoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BasicAlertDialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.window/DialogProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BasicAlertDialog|BasicAlertDialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.window.DialogProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BottomAppBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/BottomAppBarScrollBehavior?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.BottomAppBarScrollBehavior?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BottomAppBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomAppBar|BottomAppBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BottomAppBar(kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/BottomAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomAppBar|BottomAppBar(kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.BottomAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/BottomAppBar(kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomAppBar|BottomAppBar(kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/BottomAppBarState(kotlin/Float, kotlin/Float, kotlin/Float): androidx.compose.material3/BottomAppBarState // androidx.compose.material3/BottomAppBarState|BottomAppBarState(kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.material3/BottomSheetScaffold(kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/BottomSheetScaffoldState = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.material3/SnackbarHostState, kotlin/Unit> = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) // androidx.compose.material3/BottomSheetScaffold|BottomSheetScaffold(kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.BottomSheetScaffoldState;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function1<androidx.compose.material3.SnackbarHostState,kotlin.Unit>;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.PaddingValues,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ButtonGroup(androidx.compose.ui/Modifier = ..., kotlin/Float = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., kotlin/Function1<androidx.compose.material3/ButtonGroupScope, kotlin/Unit>) // androidx.compose.material3/ButtonGroup|ButtonGroup(androidx.compose.ui.Modifier;kotlin.Float;androidx.compose.foundation.layout.Arrangement.Horizontal;kotlin.Function1<androidx.compose.material3.ButtonGroupScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ButtonGroup(kotlin/Function1<androidx.compose.material3/ButtonGroupMenuState, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Float = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., kotlin/Function1<androidx.compose.material3/ButtonGroupScope, kotlin/Unit>) // androidx.compose.material3/ButtonGroup|ButtonGroup(kotlin.Function1<androidx.compose.material3.ButtonGroupMenuState,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Float;androidx.compose.foundation.layout.Arrangement.Horizontal;kotlin.Function1<androidx.compose.material3.ButtonGroupScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Card(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., androidx.compose.foundation/BorderStroke? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/Card|Card(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;androidx.compose.foundation.BorderStroke?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Card(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/Card|Card(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/CenterAlignedTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/CenterAlignedTopAppBar|CenterAlignedTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/CenterAlignedTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/CenterAlignedTopAppBar|CenterAlignedTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/CheckboxColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.CheckboxColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/CheckboxColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.CheckboxColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/CircularWavyProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Float = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularWavyProgressIndicator|CircularWavyProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.unit.Dp;kotlin.Float;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/CircularWavyProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<kotlin/Float, kotlin/Float> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/CircularWavyProgressIndicator|CircularWavyProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.Float,kotlin.Float>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/ContainedLoadingIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape = ..., kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon> = ...) // androidx.compose.material3/ContainedLoadingIndicator|ContainedLoadingIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>){}[0] -final fun androidx.compose.material3/ContainedLoadingIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Shape = ..., kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon> = ...) // androidx.compose.material3/ContainedLoadingIndicator|ContainedLoadingIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>){}[0] -final fun androidx.compose.material3/DatePicker(androidx.compose.material3/DatePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DatePickerFormatter = ..., androidx.compose.material3/DatePickerColors = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.focus/FocusRequester? = ...) // androidx.compose.material3/DatePicker|DatePicker(androidx.compose.material3.DatePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.DatePickerFormatter;androidx.compose.material3.DatePickerColors;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.focus.FocusRequester?){}[0] -final fun androidx.compose.material3/DatePicker(androidx.compose.material3/DatePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DatePickerFormatter = ..., androidx.compose.material3/DatePickerColors = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., kotlin/Boolean = ...) // androidx.compose.material3/DatePicker|DatePicker(androidx.compose.material3.DatePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.DatePickerFormatter;androidx.compose.material3.DatePickerColors;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean){}[0] -final fun androidx.compose.material3/DatePickerDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.material3/DatePickerColors = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DatePickerDialog|DatePickerDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.unit.Dp;androidx.compose.material3.DatePickerColors;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] +final fun androidx.compose.material3/BottomSheetScaffold(kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/BottomSheetScaffoldState?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/SnackbarHostState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/PaddingValues, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/BottomSheetScaffold|BottomSheetScaffold(kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.BottomSheetScaffoldState?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.SnackbarHostState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.PaddingValues,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Button(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Button|Button(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ButtonGroup(androidx.compose.ui/Modifier?, kotlin/Float, androidx.compose.foundation.layout/Arrangement.Horizontal?, kotlin/Function3<androidx.compose.material3/ButtonGroupScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ButtonGroup|ButtonGroup(androidx.compose.ui.Modifier?;kotlin.Float;androidx.compose.foundation.layout.Arrangement.Horizontal?;kotlin.Function3<androidx.compose.material3.ButtonGroupScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ButtonGroup(kotlin/Function3<androidx.compose.material3/ButtonGroupMenuState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Float, androidx.compose.foundation.layout/Arrangement.Horizontal?, kotlin/Function1<androidx.compose.material3/ButtonGroupScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ButtonGroup|ButtonGroup(kotlin.Function3<androidx.compose.material3.ButtonGroupMenuState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Float;androidx.compose.foundation.layout.Arrangement.Horizontal?;kotlin.Function1<androidx.compose.material3.ButtonGroupScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Card(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, androidx.compose.foundation/BorderStroke?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Card|Card(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;androidx.compose.foundation.BorderStroke?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Card(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Card|Card(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CenterAlignedTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CenterAlignedTopAppBar|CenterAlignedTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CenterAlignedTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CenterAlignedTopAppBar|CenterAlignedTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/CheckboxColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.CheckboxColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Checkbox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/CheckboxColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Checkbox|Checkbox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.CheckboxColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularProgressIndicator|CircularProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularWavyProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.unit/Dp, kotlin/Float, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularWavyProgressIndicator|CircularWavyProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.unit.Dp;kotlin.Float;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/CircularWavyProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.unit/Dp, kotlin/Function1<kotlin/Float, kotlin/Float>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/CircularWavyProgressIndicator|CircularWavyProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.Float,kotlin.Float>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ContainedLoadingIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ContainedLoadingIndicator|ContainedLoadingIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ContainedLoadingIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Shape?, kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ContainedLoadingIndicator|ContainedLoadingIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Shape?;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DatePicker(androidx.compose.material3/DatePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/DatePickerFormatter?, androidx.compose.material3/DatePickerColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.focus/FocusRequester?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePicker|DatePicker(androidx.compose.material3.DatePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.DatePickerFormatter?;androidx.compose.material3.DatePickerColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.focus.FocusRequester?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DatePicker(androidx.compose.material3/DatePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/DatePickerFormatter?, androidx.compose.material3/DatePickerColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePicker|DatePicker(androidx.compose.material3.DatePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.DatePickerFormatter?;androidx.compose.material3.DatePickerColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DatePickerDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.unit/Dp, androidx.compose.material3/DatePickerColors?, androidx.compose.ui.window/DialogProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DatePickerDialog|DatePickerDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.unit.Dp;androidx.compose.material3.DatePickerColors?;androidx.compose.ui.window.DialogProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/DatePickerState(androidx.compose.material3/CalendarLocale, kotlin/Long? = ..., kotlin/Long? = ..., kotlin.ranges/IntRange = ..., androidx.compose.material3/DisplayMode = ..., androidx.compose.material3/SelectableDates = ...): androidx.compose.material3/DatePickerState // androidx.compose.material3/DatePickerState|DatePickerState(androidx.compose.material3.CalendarLocale;kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates){}[0] -final fun androidx.compose.material3/DateRangePicker(androidx.compose.material3/DateRangePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DatePickerFormatter = ..., androidx.compose.material3/DatePickerColors = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.focus/FocusRequester? = ...) // androidx.compose.material3/DateRangePicker|DateRangePicker(androidx.compose.material3.DateRangePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.DatePickerFormatter;androidx.compose.material3.DatePickerColors;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.focus.FocusRequester?){}[0] -final fun androidx.compose.material3/DateRangePicker(androidx.compose.material3/DateRangePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DatePickerFormatter = ..., androidx.compose.material3/DatePickerColors = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., kotlin/Boolean = ...) // androidx.compose.material3/DateRangePicker|DateRangePicker(androidx.compose.material3.DateRangePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.DatePickerFormatter;androidx.compose.material3.DatePickerColors;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean){}[0] +final fun androidx.compose.material3/DateRangePicker(androidx.compose.material3/DateRangePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/DatePickerFormatter?, androidx.compose.material3/DatePickerColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.focus/FocusRequester?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePicker|DateRangePicker(androidx.compose.material3.DateRangePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.DatePickerFormatter?;androidx.compose.material3.DatePickerColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.focus.FocusRequester?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DateRangePicker(androidx.compose.material3/DateRangePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/DatePickerFormatter?, androidx.compose.material3/DatePickerColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DateRangePicker|DateRangePicker(androidx.compose.material3.DateRangePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.DatePickerFormatter?;androidx.compose.material3.DatePickerColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/DateRangePickerState(androidx.compose.material3/CalendarLocale, kotlin/Long? = ..., kotlin/Long? = ..., kotlin/Long? = ..., kotlin.ranges/IntRange = ..., androidx.compose.material3/DisplayMode = ..., androidx.compose.material3/SelectableDates = ...): androidx.compose.material3/DateRangePickerState // androidx.compose.material3/DateRangePickerState|DateRangePickerState(androidx.compose.material3.CalendarLocale;kotlin.Long?;kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates){}[0] -final fun androidx.compose.material3/DismissibleDrawerSheet(androidx.compose.material3/DrawerState, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DismissibleDrawerSheet|DismissibleDrawerSheet(androidx.compose.material3.DrawerState;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/DismissibleDrawerSheet(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DismissibleDrawerSheet|DismissibleDrawerSheet(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/DismissibleNavigationDrawer(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DrawerState = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/DismissibleNavigationDrawer|DismissibleNavigationDrawer(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.DrawerState;kotlin.Boolean;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Divider(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/Divider|Divider(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/DockedSearchBar(kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DockedSearchBar|DockedSearchBar(kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/DockedSearchBar(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DockedSearchBar|DockedSearchBar(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/DropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/DpOffset = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.window/PopupProperties = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/DropdownMenu|DropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.unit.DpOffset;androidx.compose.foundation.ScrollState;androidx.compose.ui.window.PopupProperties;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/DropdownMenuItem(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/MenuItemColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/DropdownMenuItem|DropdownMenuItem(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.MenuItemColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/ElevatedAssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/ElevatedAssistChip|ElevatedAssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/ElevatedAssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.material3/ChipBorder? = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ...) // androidx.compose.material3/ElevatedAssistChip|ElevatedAssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource){}[0] -final fun androidx.compose.material3/ElevatedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/ElevatedButton|ElevatedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ElevatedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/ElevatedButton|ElevatedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ElevatedCard(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ElevatedCard|ElevatedCard(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ElevatedCard(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ElevatedCard|ElevatedCard(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ElevatedFilterChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SelectableChipColors = ..., androidx.compose.material3/SelectableChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/ElevatedFilterChip|ElevatedFilterChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SelectableChipColors;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/ElevatedSuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/ElevatedSuggestionChip|ElevatedSuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/ElevatedSuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.material3/ChipBorder? = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ...) // androidx.compose.material3/ElevatedSuggestionChip|ElevatedSuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource){}[0] -final fun androidx.compose.material3/ElevatedToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ToggleButtonShapes = ..., androidx.compose.material3/ToggleButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/ElevatedToggleButton|ElevatedToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes;androidx.compose.material3.ToggleButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ExpandedDockedSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.window/PopupProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ExpandedDockedSearchBar|ExpandedDockedSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.window.PopupProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ExpandedFullScreenSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<androidx.compose.foundation.layout/WindowInsets> = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ExpandedFullScreenSearchBar|ExpandedFullScreenSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function0<androidx.compose.foundation.layout.WindowInsets>;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ExposedDropdownMenuBox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3/ExposedDropdownMenuBoxScope, kotlin/Unit>) // androidx.compose.material3/ExposedDropdownMenuBox|ExposedDropdownMenuBox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.ExposedDropdownMenuBoxScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/FilledIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledIconButton|FilledIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledIconButton|FilledIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledIconToggleButton|FilledIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledIconToggleButton|FilledIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/FilledTonalButton|FilledTonalButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/FilledTonalButton|FilledTonalButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledTonalIconButton|FilledTonalIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledTonalIconButton|FilledTonalIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledTonalIconToggleButton|FilledTonalIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilledTonalIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FilledTonalIconToggleButton|FilledTonalIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FilterChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SelectableChipColors = ..., androidx.compose.material3/SelectableChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/FilterChip|FilterChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SelectableChipColors;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/FlexibleBottomAppBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.layout/Arrangement.Horizontal = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/BottomAppBarScrollBehavior? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/FlexibleBottomAppBar|FlexibleBottomAppBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.layout.Arrangement.Horizontal;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.BottomAppBarScrollBehavior?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/FloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/FloatingActionButton|FloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/FloatingActionButtonMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment.Horizontal = ..., kotlin/Function1<androidx.compose.material3/FloatingActionButtonMenuScope, kotlin/Unit>) // androidx.compose.material3/FloatingActionButtonMenu|FloatingActionButtonMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment.Horizontal;kotlin.Function1<androidx.compose.material3.FloatingActionButtonMenuScope,kotlin.Unit>){}[0] +final fun androidx.compose.material3/DismissibleDrawerSheet(androidx.compose.material3/DrawerState, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DismissibleDrawerSheet|DismissibleDrawerSheet(androidx.compose.material3.DrawerState;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DismissibleDrawerSheet(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DismissibleDrawerSheet|DismissibleDrawerSheet(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DismissibleNavigationDrawer(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/DrawerState?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DismissibleNavigationDrawer|DismissibleNavigationDrawer(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.DrawerState?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Divider(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Divider|Divider(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DockedSearchBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DockedSearchBar|DockedSearchBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DockedSearchBar(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/DockedSearchBar|DockedSearchBar(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DropdownMenu(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/DpOffset, androidx.compose.foundation/ScrollState?, androidx.compose.ui.window/PopupProperties?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/DropdownMenu|DropdownMenu(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.DpOffset;androidx.compose.foundation.ScrollState?;androidx.compose.ui.window.PopupProperties?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/DropdownMenuItem(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/MenuItemColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/DropdownMenuItem|DropdownMenuItem(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.MenuItemColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedAssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedAssistChip|ElevatedAssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedAssistChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.material3/ChipBorder?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedAssistChip|ElevatedAssistChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedButton|ElevatedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedButton|ElevatedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedCard(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedCard|ElevatedCard(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedCard(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedCard|ElevatedCard(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedFilterChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SelectableChipColors?, androidx.compose.material3/SelectableChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedFilterChip|ElevatedFilterChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SelectableChipColors?;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedSuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedSuggestionChip|ElevatedSuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedSuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.material3/ChipBorder?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedSuggestionChip|ElevatedSuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ElevatedToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ToggleButtonShapes?, androidx.compose.material3/ToggleButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ElevatedToggleButton|ElevatedToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes?;androidx.compose.material3.ToggleButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ExpandedDockedSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.window/PopupProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExpandedDockedSearchBar|ExpandedDockedSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.window.PopupProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ExpandedFullScreenSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.foundation.layout/WindowInsets>?, androidx.compose.ui.window/DialogProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExpandedFullScreenSearchBar|ExpandedFullScreenSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.foundation.layout.WindowInsets>?;androidx.compose.ui.window.DialogProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ExposedDropdownMenuBox(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3/ExposedDropdownMenuBoxScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExposedDropdownMenuBox|ExposedDropdownMenuBox(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.ExposedDropdownMenuBoxScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ExtendedFloatingActionButton(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ExtendedFloatingActionButton|ExtendedFloatingActionButton(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledIconButton|FilledIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledIconButton|FilledIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledIconToggleButton|FilledIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledIconToggleButton|FilledIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalButton|FilledTonalButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalButton|FilledTonalButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalIconButton|FilledTonalIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalIconButton|FilledTonalIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalIconToggleButton|FilledTonalIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilledTonalIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilledTonalIconToggleButton|FilledTonalIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FilterChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SelectableChipColors?, androidx.compose.material3/SelectableChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/FilterChip|FilterChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SelectableChipColors?;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FlexibleBottomAppBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/Arrangement.Horizontal?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/BottomAppBarScrollBehavior?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FlexibleBottomAppBar|FlexibleBottomAppBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.Arrangement.Horizontal?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.BottomAppBarScrollBehavior?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FloatingActionButton|FloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/FloatingActionButtonMenu(kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment.Horizontal?, kotlin/Function3<androidx.compose.material3/FloatingActionButtonMenuScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/FloatingActionButtonMenu|FloatingActionButtonMenu(kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment.Horizontal?;kotlin.Function3<androidx.compose.material3.FloatingActionButtonMenuScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/FloatingToolbarState(kotlin/Float, kotlin/Float, kotlin/Float): androidx.compose.material3/FloatingToolbarState // androidx.compose.material3/FloatingToolbarState|FloatingToolbarState(kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.material3/HorizontalDivider(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/HorizontalDivider|HorizontalDivider(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/HorizontalFloatingToolbar(kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.material3/FloatingToolbarColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.material3/FloatingToolbarScrollBehavior? = ..., androidx.compose.ui.graphics/Shape = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/HorizontalFloatingToolbar|HorizontalFloatingToolbar(kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.material3.FloatingToolbarColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/HorizontalFloatingToolbar(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/FloatingToolbarColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.material3/FloatingToolbarScrollBehavior? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/FloatingToolbarHorizontalFabPosition = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/HorizontalFloatingToolbar|HorizontalFloatingToolbar(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.FloatingToolbarColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.FloatingToolbarHorizontalFabPosition;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.painter/Painter, androidx.compose.ui.graphics/ColorProducer?, kotlin/String?, androidx.compose.ui/Modifier = ...) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;androidx.compose.ui.graphics.ColorProducer?;kotlin.String?;androidx.compose.ui.Modifier){}[0] -final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/InputChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SelectableChipColors = ..., androidx.compose.material3/SelectableChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/InputChip|InputChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SelectableChipColors;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/Label(kotlin/Function1<androidx.compose.material3/TooltipScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Label|Label(kotlin.Function1<androidx.compose.material3.TooltipScope,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Boolean;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/LargeExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/LargeExtendedFloatingActionButton|LargeExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/LargeExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/LargeExtendedFloatingActionButton|LargeExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/LargeFlexibleTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/LargeFlexibleTopAppBar|LargeFlexibleTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Alignment.Horizontal;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/LargeFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/LargeFloatingActionButton|LargeFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/LargeTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/LargeTopAppBar|LargeTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/LargeTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/LargeTopAppBar|LargeTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/LeadingIconTab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/LeadingIconTab|LeadingIconTab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap){}[0] -final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit> = ...) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/LinearWavyProgressIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Float = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/LinearWavyProgressIndicator|LinearWavyProgressIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.unit.Dp;kotlin.Float;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/LinearWavyProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.graphics.drawscope/Stroke = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<kotlin/Float, kotlin/Float> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/LinearWavyProgressIndicator|LinearWavyProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.Float,kotlin.Float>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/ListItem(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/ListItemColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/ListItem|ListItem(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.ListItemColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/LoadingIndicator(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon> = ...) // androidx.compose.material3/LoadingIndicator|LoadingIndicator(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>){}[0] -final fun androidx.compose.material3/LoadingIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon> = ...) // androidx.compose.material3/LoadingIndicator|LoadingIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>){}[0] -final fun androidx.compose.material3/MaterialExpressiveTheme(androidx.compose.material3/ColorScheme? = ..., androidx.compose.material3/MotionScheme? = ..., androidx.compose.material3/Shapes? = ..., androidx.compose.material3/Typography? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/MaterialExpressiveTheme|MaterialExpressiveTheme(androidx.compose.material3.ColorScheme?;androidx.compose.material3.MotionScheme?;androidx.compose.material3.Shapes?;androidx.compose.material3.Typography?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/MaterialTheme(androidx.compose.material3/ColorScheme = ..., androidx.compose.material3/MotionScheme = ..., androidx.compose.material3/Shapes = ..., androidx.compose.material3/Typography = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/MaterialTheme|MaterialTheme(androidx.compose.material3.ColorScheme;androidx.compose.material3.MotionScheme;androidx.compose.material3.Shapes;androidx.compose.material3.Typography;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/MaterialTheme(androidx.compose.material3/ColorScheme = ..., androidx.compose.material3/Shapes = ..., androidx.compose.material3/Typography = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/MaterialTheme|MaterialTheme(androidx.compose.material3.ColorScheme;androidx.compose.material3.Shapes;androidx.compose.material3.Typography;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/MediumExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/MediumExtendedFloatingActionButton|MediumExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/MediumExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/MediumExtendedFloatingActionButton|MediumExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/MediumFlexibleTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/MediumFlexibleTopAppBar|MediumFlexibleTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Alignment.Horizontal;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/MediumFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/MediumFloatingActionButton|MediumFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/MediumTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/MediumTopAppBar|MediumTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/MediumTopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/MediumTopAppBar|MediumTopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/ModalBottomSheet(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SheetState = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<androidx.compose.foundation.layout/WindowInsets> = ..., androidx.compose.material3/ModalBottomSheetProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ModalBottomSheet|ModalBottomSheet(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.SheetState;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<androidx.compose.foundation.layout.WindowInsets>;androidx.compose.material3.ModalBottomSheetProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ModalBottomSheet(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/SheetState = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<androidx.compose.foundation.layout/WindowInsets> = ..., androidx.compose.material3/ModalBottomSheetProperties = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ModalBottomSheet|ModalBottomSheet(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.SheetState;androidx.compose.ui.unit.Dp;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<androidx.compose.foundation.layout.WindowInsets>;androidx.compose.material3.ModalBottomSheetProperties;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ModalDrawerSheet(androidx.compose.material3/DrawerState, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ModalDrawerSheet|ModalDrawerSheet(androidx.compose.material3.DrawerState;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ModalDrawerSheet(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/ModalDrawerSheet|ModalDrawerSheet(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ModalNavigationDrawer(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/DrawerState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/ModalNavigationDrawer|ModalNavigationDrawer(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.DrawerState;kotlin.Boolean;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/ModalWideNavigationRail(androidx.compose.ui/Modifier = ..., androidx.compose.material3/WideNavigationRailState = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/WideNavigationRailColors = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., androidx.compose.material3/ModalWideNavigationRailProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/ModalWideNavigationRail|ModalWideNavigationRail(androidx.compose.ui.Modifier;androidx.compose.material3.WideNavigationRailState;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Shape;androidx.compose.material3.WideNavigationRailColors;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.foundation.layout.Arrangement.Vertical;androidx.compose.material3.ModalWideNavigationRailProperties;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/MultiChoiceSegmentedButtonRow(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/MultiChoiceSegmentedButtonRowScope, kotlin/Unit>) // androidx.compose.material3/MultiChoiceSegmentedButtonRow|MultiChoiceSegmentedButtonRow(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.MultiChoiceSegmentedButtonRowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/NavigationBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/NavigationBar|NavigationBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/NavigationDrawerItem(kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/NavigationDrawerItemColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/NavigationDrawerItem|NavigationDrawerItem(kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.NavigationDrawerItemColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/NavigationRail(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/NavigationRail|NavigationRail(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/NavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/NavigationRailItemColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/NavigationRailItem|NavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.NavigationRailItemColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedCard(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., androidx.compose.foundation/BorderStroke = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/OutlinedCard|OutlinedCard(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;androidx.compose.foundation.BorderStroke;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedCard(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/CardColors = ..., androidx.compose.material3/CardElevation = ..., androidx.compose.foundation/BorderStroke = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/OutlinedCard|OutlinedCard(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.CardColors;androidx.compose.material3.CardElevation;androidx.compose.foundation.BorderStroke;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/OutlinedIconButton|OutlinedIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconButtonColors = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/OutlinedIconButton|OutlinedIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconButtonColors;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/OutlinedIconToggleButton|OutlinedIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/IconToggleButtonColors = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/OutlinedIconToggleButton|OutlinedIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.IconToggleButtonColors;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/OutlinedSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/OutlinedSecureTextField|OutlinedSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/OutlinedTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.foundation.text.input/TextFieldLineLimits = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ...) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors){}[0] -final fun androidx.compose.material3/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ...) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors){}[0] -final fun androidx.compose.material3/OutlinedToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ToggleButtonShapes = ..., androidx.compose.material3/ToggleButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/OutlinedToggleButton|OutlinedToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes;androidx.compose.material3.ToggleButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/PermanentDrawerSheet(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/PermanentDrawerSheet|PermanentDrawerSheet(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/PermanentNavigationDrawer(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/PermanentNavigationDrawer|PermanentNavigationDrawer(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/PrimaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/PrimaryScrollableTabRow|PrimaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/PrimaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/PrimaryScrollableTabRow|PrimaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/PrimaryTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/PrimaryTabRow|PrimaryTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/ProvideTextStyle(androidx.compose.ui.text/TextStyle, kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/ProvideTextStyle|ProvideTextStyle(androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/RadioButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/RadioButtonColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/RadioButton|RadioButton(kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.RadioButtonColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/RangeSlider(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ...) // androidx.compose.material3/RangeSlider|RangeSlider(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.foundation.interaction.MutableInteractionSource;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>){}[0] -final fun androidx.compose.material3/RangeSlider(kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Function1<kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/RangeSliderState, kotlin/Unit> = ..., kotlin/Int = ...) // androidx.compose.material3/RangeSlider|RangeSlider(kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Function1<kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource;androidx.compose.foundation.interaction.MutableInteractionSource;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.RangeSliderState,kotlin.Unit>;kotlin.Int){}[0] -final fun androidx.compose.material3/RangeSlider(kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Function1<kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ..., kotlin/Int = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/SliderColors = ...) // androidx.compose.material3/RangeSlider|RangeSlider(kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Function1<kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors){}[0] -final fun androidx.compose.material3/Scaffold(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., androidx.compose.material3/FabPosition = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/PaddingValues, kotlin/Unit>) // androidx.compose.material3/Scaffold|Scaffold(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.material3.FabPosition;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.PaddingValues,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<kotlin.collections/List<androidx.compose.material3/TabPosition>, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/ScrollableTabRow|ScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.collections.List<androidx.compose.material3.TabPosition>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SearchBar(androidx.compose.material3/SearchBarState, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SearchBar|SearchBar(androidx.compose.material3.SearchBarState;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/SearchBar(kotlin/Function0<kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/SearchBar|SearchBar(kotlin.Function0<kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/SearchBar(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/SearchBar|SearchBar(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/SecondaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SecondaryScrollableTabRow|SecondaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.unit.Dp;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SecondaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SecondaryScrollableTabRow|SecondaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SecondaryTabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.material3/TabIndicatorScope, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SecondaryTabRow|SecondaryTabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.material3.TabIndicatorScope,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/TextObfuscationMode = ..., kotlin/Char = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SecureTextField|SecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/ShortNavigationBar(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/ShortNavigationBarArrangement = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/ShortNavigationBar|ShortNavigationBar(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.ShortNavigationBarArrangement;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/ShortNavigationBarItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/NavigationItemIconPosition = ..., androidx.compose.material3/NavigationItemColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/ShortNavigationBarItem|ShortNavigationBarItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.NavigationItemIconPosition;androidx.compose.material3.NavigationItemColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/SingleChoiceSegmentedButtonRow(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.material3/SingleChoiceSegmentedButtonRowScope, kotlin/Unit>) // androidx.compose.material3/SingleChoiceSegmentedButtonRow|SingleChoiceSegmentedButtonRow(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.material3.SingleChoiceSegmentedButtonRowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Slider(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ...) // androidx.compose.material3/Slider|Slider(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ..., kotlin/Int = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ...) // androidx.compose.material3/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource){}[0] -final fun androidx.compose.material3/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ...) // androidx.compose.material3/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource;kotlin.Int;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>){}[0] -final fun androidx.compose.material3/SmallExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SmallExtendedFloatingActionButton|SmallExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/SmallExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SmallExtendedFloatingActionButton|SmallExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/SmallFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.material3/FloatingActionButtonElevation = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/SmallFloatingActionButton|SmallFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Snackbar(androidx.compose.material3/SnackbarData, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/Snackbar|Snackbar(androidx.compose.material3.SnackbarData;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/Snackbar(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Snackbar|Snackbar(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SnackbarHost(androidx.compose.material3/SnackbarHostState, androidx.compose.ui/Modifier = ..., kotlin/Function1<androidx.compose.material3/SnackbarData, kotlin/Unit> = ...) // androidx.compose.material3/SnackbarHost|SnackbarHost(androidx.compose.material3.SnackbarHostState;androidx.compose.ui.Modifier;kotlin.Function1<androidx.compose.material3.SnackbarData,kotlin.Unit>){}[0] -final fun androidx.compose.material3/SplitButtonLayout(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ...) // androidx.compose.material3/SplitButtonLayout|SplitButtonLayout(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp){}[0] -final fun androidx.compose.material3/SuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/SuggestionChip|SuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/SuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ChipColors = ..., androidx.compose.material3/ChipElevation? = ..., androidx.compose.material3/ChipBorder? = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ...) // androidx.compose.material3/SuggestionChip|SuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ChipColors;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource){}[0] -final fun androidx.compose.material3/Surface(androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Surface|Surface(androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Surface(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Surface|Surface(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Surface(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Surface|Surface(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Surface(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/Surface|Surface(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/SwipeToDismissBox(androidx.compose.material3/SwipeToDismissBoxState, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin.coroutines/SuspendFunction1<androidx.compose.material3/SwipeToDismissBoxValue, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SwipeToDismissBox|SwipeToDismissBox(androidx.compose.material3.SwipeToDismissBoxState;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;kotlin.Boolean;kotlin.coroutines.SuspendFunction1<androidx.compose.material3.SwipeToDismissBoxValue,kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/SwipeToDismissBox(androidx.compose.material3/SwipeToDismissBoxState, kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/SwipeToDismissBox|SwipeToDismissBox(androidx.compose.material3.SwipeToDismissBoxState;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;kotlin.Boolean;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Switch(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.material3/SwitchColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/Switch|Switch(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.SwitchColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/TabRow(kotlin/Int, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<kotlin.collections/List<androidx.compose.material3/TabPosition>, kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/TabRow|TabRow(kotlin.Int;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function1<kotlin.collections.List<androidx.compose.material3.TabPosition>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text/TextAutoSize? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent> = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.foundation.text/TextAutoSize? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit> = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.font/FontStyle? = ..., androidx.compose.ui.text.font/FontWeight? = ..., androidx.compose.ui.text.font/FontFamily? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.text.style/TextAlign? = ..., androidx.compose.ui.unit/TextUnit = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>? = ..., androidx.compose.ui.text/TextStyle = ...) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle){}[0] -final fun androidx.compose.material3/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/ButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.ui.graphics.Shape;androidx.compose.material3.ButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/TextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.material3/TextFieldLabelPosition = ..., kotlin/Function1<androidx.compose.material3/TextFieldLabelScope, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.foundation.text.input/InputTransformation? = ..., androidx.compose.foundation.text.input/OutputTransformation? = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text.input/KeyboardActionHandler? = ..., androidx.compose.foundation.text.input/TextFieldLineLimits = ..., kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>? = ..., androidx.compose.foundation/ScrollState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/TextField|TextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;androidx.compose.material3.TextFieldLabelPosition;kotlin.Function1<androidx.compose.material3.TextFieldLabelScope,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.ScrollState;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ...) // androidx.compose.material3/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors){}[0] -final fun androidx.compose.material3/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.ui.text/TextStyle = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., androidx.compose.ui.text.input/VisualTransformation = ..., androidx.compose.foundation.text/KeyboardOptions = ..., androidx.compose.foundation.text/KeyboardActions = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin/Int = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/TextFieldColors = ...) // androidx.compose.material3/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation;androidx.compose.foundation.text.KeyboardOptions;androidx.compose.foundation.text.KeyboardActions;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.TextFieldColors){}[0] -final fun androidx.compose.material3/TimeInput(androidx.compose.material3/TimePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/TimePickerColors = ...) // androidx.compose.material3/TimeInput|TimeInput(androidx.compose.material3.TimePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.TimePickerColors){}[0] -final fun androidx.compose.material3/TimePicker(androidx.compose.material3/TimePickerState, androidx.compose.ui/Modifier = ..., androidx.compose.material3/TimePickerColors = ..., androidx.compose.material3/TimePickerLayoutType = ...) // androidx.compose.material3/TimePicker|TimePicker(androidx.compose.material3.TimePickerState;androidx.compose.ui.Modifier;androidx.compose.material3.TimePickerColors;androidx.compose.material3.TimePickerLayoutType){}[0] -final fun androidx.compose.material3/TimePickerDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.ui.graphics/Color = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/TimePickerDialog|TimePickerDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.window.DialogProperties;kotlin.Function0<kotlin.Unit>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.Shape;androidx.compose.ui.graphics.Color;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] +final fun androidx.compose.material3/HorizontalDivider(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/HorizontalDivider|HorizontalDivider(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/HorizontalFloatingToolbar(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.material3/FloatingToolbarColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.material3/FloatingToolbarScrollBehavior?, androidx.compose.ui.graphics/Shape?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/HorizontalFloatingToolbar|HorizontalFloatingToolbar(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.material3.FloatingToolbarColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/HorizontalFloatingToolbar(kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/FloatingToolbarColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.material3/FloatingToolbarScrollBehavior?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/FloatingToolbarHorizontalFabPosition, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/HorizontalFloatingToolbar|HorizontalFloatingToolbar(kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.FloatingToolbarColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.FloatingToolbarHorizontalFabPosition;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.painter/Painter, androidx.compose.ui.graphics/ColorProducer?, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;androidx.compose.ui.graphics.ColorProducer?;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.painter/Painter, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.painter.Painter;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics.vector/ImageVector, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.vector.ImageVector;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Icon(androidx.compose.ui.graphics/ImageBitmap, kotlin/String?, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Icon|Icon(androidx.compose.ui.graphics.ImageBitmap;kotlin.String?;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconButton|IconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/IconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/IconToggleButton|IconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/InputChip(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SelectableChipColors?, androidx.compose.material3/SelectableChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/InputChip|InputChip(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SelectableChipColors?;androidx.compose.material3.SelectableChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Label(kotlin/Function3<androidx.compose.material3/TooltipScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Label|Label(kotlin.Function3<androidx.compose.material3.TooltipScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeExtendedFloatingActionButton|LargeExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeExtendedFloatingActionButton(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeExtendedFloatingActionButton|LargeExtendedFloatingActionButton(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeFlexibleTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeFlexibleTopAppBar|LargeFlexibleTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeFloatingActionButton|LargeFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeTopAppBar|LargeTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LargeTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LargeTopAppBar|LargeTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LeadingIconTab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LeadingIconTab|LeadingIconTab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Float, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Float;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.unit/Dp, kotlin/Function1<androidx.compose.ui.graphics.drawscope/DrawScope, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearProgressIndicator|LinearProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.ui.graphics.drawscope.DrawScope,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearWavyProgressIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.unit/Dp, kotlin/Float, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearWavyProgressIndicator|LinearWavyProgressIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.unit.Dp;kotlin.Float;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LinearWavyProgressIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.graphics.drawscope/Stroke?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function1<kotlin/Float, kotlin/Float>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/LinearWavyProgressIndicator|LinearWavyProgressIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.graphics.drawscope.Stroke?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<kotlin.Float,kotlin.Float>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ListItem(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3/ListItemColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ListItem|ListItem(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.ListItemColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LoadingIndicator(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LoadingIndicator|LoadingIndicator(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/LoadingIndicator(kotlin/Function0<kotlin/Float>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, kotlin.collections/List<androidx.graphics.shapes/RoundedPolygon>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/LoadingIndicator|LoadingIndicator(kotlin.Function0<kotlin.Float>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;kotlin.collections.List<androidx.graphics.shapes.RoundedPolygon>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MaterialExpressiveTheme(androidx.compose.material3/ColorScheme?, androidx.compose.material3/MotionScheme?, androidx.compose.material3/Shapes?, androidx.compose.material3/Typography?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MaterialExpressiveTheme|MaterialExpressiveTheme(androidx.compose.material3.ColorScheme?;androidx.compose.material3.MotionScheme?;androidx.compose.material3.Shapes?;androidx.compose.material3.Typography?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MaterialTheme(androidx.compose.material3/ColorScheme?, androidx.compose.material3/MotionScheme?, androidx.compose.material3/Shapes?, androidx.compose.material3/Typography?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MaterialTheme|MaterialTheme(androidx.compose.material3.ColorScheme?;androidx.compose.material3.MotionScheme?;androidx.compose.material3.Shapes?;androidx.compose.material3.Typography?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MaterialTheme(androidx.compose.material3/ColorScheme?, androidx.compose.material3/Shapes?, androidx.compose.material3/Typography?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MaterialTheme|MaterialTheme(androidx.compose.material3.ColorScheme?;androidx.compose.material3.Shapes?;androidx.compose.material3.Typography?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumExtendedFloatingActionButton|MediumExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumExtendedFloatingActionButton(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumExtendedFloatingActionButton|MediumExtendedFloatingActionButton(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumFlexibleTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumFlexibleTopAppBar|MediumFlexibleTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumFloatingActionButton|MediumFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumTopAppBar|MediumTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MediumTopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MediumTopAppBar|MediumTopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalBottomSheet(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/SheetState?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.foundation.layout/WindowInsets>?, androidx.compose.material3/ModalBottomSheetProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalBottomSheet|ModalBottomSheet(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.SheetState?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.foundation.layout.WindowInsets>?;androidx.compose.material3.ModalBottomSheetProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalBottomSheet(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/SheetState?, androidx.compose.ui.unit/Dp, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.foundation.layout/WindowInsets>?, androidx.compose.material3/ModalBottomSheetProperties?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalBottomSheet|ModalBottomSheet(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.SheetState?;androidx.compose.ui.unit.Dp;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.foundation.layout.WindowInsets>?;androidx.compose.material3.ModalBottomSheetProperties?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalDrawerSheet(androidx.compose.material3/DrawerState, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalDrawerSheet|ModalDrawerSheet(androidx.compose.material3.DrawerState;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalDrawerSheet(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalDrawerSheet|ModalDrawerSheet(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalNavigationDrawer(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/DrawerState?, kotlin/Boolean, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalNavigationDrawer|ModalNavigationDrawer(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.DrawerState?;kotlin.Boolean;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ModalWideNavigationRail(androidx.compose.ui/Modifier?, androidx.compose.material3/WideNavigationRailState?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/WideNavigationRailColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.foundation.layout/Arrangement.Vertical?, androidx.compose.material3/ModalWideNavigationRailProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ModalWideNavigationRail|ModalWideNavigationRail(androidx.compose.ui.Modifier?;androidx.compose.material3.WideNavigationRailState?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.WideNavigationRailColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.foundation.layout.Arrangement.Vertical?;androidx.compose.material3.ModalWideNavigationRailProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/MultiChoiceSegmentedButtonRow(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/MultiChoiceSegmentedButtonRowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/MultiChoiceSegmentedButtonRow|MultiChoiceSegmentedButtonRow(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.MultiChoiceSegmentedButtonRowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/NavigationBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/NavigationBar|NavigationBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/NavigationDrawerItem(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/NavigationDrawerItemColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/NavigationDrawerItem|NavigationDrawerItem(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.NavigationDrawerItemColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/NavigationRail(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/NavigationRail|NavigationRail(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/NavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/NavigationRailItemColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/NavigationRailItem|NavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.NavigationRailItemColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedButton|OutlinedButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedCard(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, androidx.compose.foundation/BorderStroke?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedCard|OutlinedCard(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;androidx.compose.foundation.BorderStroke?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedCard(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/CardColors?, androidx.compose.material3/CardElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedCard|OutlinedCard(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.CardColors?;androidx.compose.material3.CardElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/IconButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedIconButton|OutlinedIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.IconButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedIconButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedIconButton|OutlinedIconButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.material3/IconToggleButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedIconToggleButton|OutlinedIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.material3.IconToggleButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedIconToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/IconToggleButtonColors?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedIconToggleButton|OutlinedIconToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.IconToggleButtonColors?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedSecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedSecureTextField|OutlinedSecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedTextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedTextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedTextField|OutlinedTextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/OutlinedToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ToggleButtonShapes?, androidx.compose.material3/ToggleButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/OutlinedToggleButton|OutlinedToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes?;androidx.compose.material3.ToggleButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/PermanentDrawerSheet(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PermanentDrawerSheet|PermanentDrawerSheet(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/PermanentNavigationDrawer(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PermanentNavigationDrawer|PermanentNavigationDrawer(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/PrimaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PrimaryScrollableTabRow|PrimaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/PrimaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PrimaryScrollableTabRow|PrimaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/PrimaryTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/PrimaryTabRow|PrimaryTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ProvideTextStyle(androidx.compose.ui.text/TextStyle, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.material3/ProvideTextStyle|ProvideTextStyle(androidx.compose.ui.text.TextStyle;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.material3/RadioButton(kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/RadioButtonColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/RadioButton|RadioButton(kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.RadioButtonColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/RangeSlider(androidx.compose.material3/RangeSliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/RangeSlider|RangeSlider(androidx.compose.material3.RangeSliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/RangeSlider(kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Function1<kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, kotlin/Function0<kotlin/Unit>?, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/RangeSliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/RangeSlider|RangeSlider(kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Function1<kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.RangeSliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/RangeSlider(kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Function1<kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, kotlin/Int, kotlin/Function0<kotlin/Unit>?, androidx.compose.material3/SliderColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/RangeSlider|RangeSlider(kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>;kotlin.Function1<kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Scaffold(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.material3/FabPosition, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/PaddingValues, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Scaffold|Scaffold(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.material3.FabPosition;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.PaddingValues,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<kotlin.collections/List<androidx.compose.material3/TabPosition>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ScrollableTabRow|ScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<kotlin.collections.List<androidx.compose.material3.TabPosition>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SearchBar(androidx.compose.material3/SearchBarState, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBar|SearchBar(androidx.compose.material3.SearchBarState;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SearchBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBar|SearchBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SearchBar(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Function1<kotlin/String, kotlin/Unit>, kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SearchBar|SearchBar(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Function1<kotlin.String,kotlin.Unit>;kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SecondaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SecondaryScrollableTabRow|SecondaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SecondaryScrollableTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SecondaryScrollableTabRow|SecondaryScrollableTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SecondaryTabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.material3/TabIndicatorScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SecondaryTabRow|SecondaryTabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.material3.TabIndicatorScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SecureTextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/TextObfuscationMode, kotlin/Char, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/SecureTextField|SecureTextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.TextObfuscationMode;kotlin.Char;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ShortNavigationBar(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/ShortNavigationBarArrangement, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ShortNavigationBar|ShortNavigationBar(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.ShortNavigationBarArrangement;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ShortNavigationBarItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/NavigationItemIconPosition, androidx.compose.material3/NavigationItemColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ShortNavigationBarItem|ShortNavigationBarItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.NavigationItemIconPosition;androidx.compose.material3.NavigationItemColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SingleChoiceSegmentedButtonRow(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.material3/SingleChoiceSegmentedButtonRowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SingleChoiceSegmentedButtonRow|SingleChoiceSegmentedButtonRow(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.material3.SingleChoiceSegmentedButtonRowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Slider(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Slider|Slider(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, kotlin/Int, kotlin/Function0<kotlin/Unit>?, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;kotlin.Int;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Slider(kotlin/Float, kotlin/Function1<kotlin/Float, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function0<kotlin/Unit>?, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Int, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Slider|Slider(kotlin.Float;kotlin.Function1<kotlin.Float,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function0<kotlin.Unit>?;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Int;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SmallExtendedFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SmallExtendedFloatingActionButton|SmallExtendedFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SmallExtendedFloatingActionButton(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SmallExtendedFloatingActionButton|SmallExtendedFloatingActionButton(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SmallFloatingActionButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.material3/FloatingActionButtonElevation?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SmallFloatingActionButton|SmallFloatingActionButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.material3.FloatingActionButtonElevation?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Snackbar(androidx.compose.material3/SnackbarData, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Snackbar|Snackbar(androidx.compose.material3.SnackbarData;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Snackbar(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Snackbar|Snackbar(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SnackbarHost(androidx.compose.material3/SnackbarHostState, androidx.compose.ui/Modifier?, kotlin/Function3<androidx.compose.material3/SnackbarData, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SnackbarHost|SnackbarHost(androidx.compose.material3.SnackbarHostState;androidx.compose.ui.Modifier?;kotlin.Function3<androidx.compose.material3.SnackbarData,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SplitButtonLayout(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SplitButtonLayout|SplitButtonLayout(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SuggestionChip|SuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SuggestionChip(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ChipColors?, androidx.compose.material3/ChipElevation?, androidx.compose.material3/ChipBorder?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SuggestionChip|SuggestionChip(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ChipColors?;androidx.compose.material3.ChipElevation?;androidx.compose.material3.ChipBorder?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Surface(androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Surface|Surface(androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Surface(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Surface|Surface(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Surface(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Surface|Surface(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Surface(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Surface|Surface(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SwipeToDismissBox(androidx.compose.material3/SwipeToDismissBoxState, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, kotlin/Boolean, kotlin.coroutines/SuspendFunction1<androidx.compose.material3/SwipeToDismissBoxValue, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SwipeToDismissBox|SwipeToDismissBox(androidx.compose.material3.SwipeToDismissBoxState;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;kotlin.Boolean;kotlin.coroutines.SuspendFunction1<androidx.compose.material3.SwipeToDismissBoxValue,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/SwipeToDismissBox(androidx.compose.material3/SwipeToDismissBoxState, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, kotlin/Boolean, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/SwipeToDismissBox|SwipeToDismissBox(androidx.compose.material3.SwipeToDismissBoxState;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;kotlin.Boolean;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Switch(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.material3/SwitchColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Switch|Switch(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.material3.SwitchColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Tab(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/Tab|Tab(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TabRow(kotlin/Int, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/Color, kotlin/Function3<kotlin.collections/List<androidx.compose.material3/TabPosition>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TabRow|TabRow(kotlin.Int;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;kotlin.Function3<kotlin.collections.List<androidx.compose.material3.TabPosition>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text/TextAutoSize?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(androidx.compose.ui.text/AnnotatedString, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin.collections/Map<kotlin/String, androidx.compose.foundation.text/InlineTextContent>?, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.collections.Map<kotlin.String,androidx.compose.foundation.text.InlineTextContent>?;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.foundation.text/TextAutoSize?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.foundation.text.TextAutoSize?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/Text(kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Color, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.font/FontStyle?, androidx.compose.ui.text.font/FontWeight?, androidx.compose.ui.text.font/FontFamily?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextDecoration?, androidx.compose.ui.text.style/TextAlign?, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.text.style/TextOverflow, kotlin/Boolean, kotlin/Int, kotlin/Int, kotlin/Function1<androidx.compose.ui.text/TextLayoutResult, kotlin/Unit>?, androidx.compose.ui.text/TextStyle?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/Text|Text(kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Color;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.font.FontStyle?;androidx.compose.ui.text.font.FontWeight?;androidx.compose.ui.text.font.FontFamily?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.text.style.TextAlign?;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.Int;kotlin.Function1<androidx.compose.ui.text.TextLayoutResult,kotlin.Unit>?;androidx.compose.ui.text.TextStyle?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.material3/ButtonShapes, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.material3.ButtonShapes;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TextButton(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/ButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextButton|TextButton(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.ButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TextField(androidx.compose.foundation.text.input/TextFieldState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, androidx.compose.material3/TextFieldLabelPosition?, kotlin/Function3<androidx.compose.material3/TextFieldLabelScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.foundation.text.input/InputTransformation?, androidx.compose.foundation.text.input/OutputTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text.input/KeyboardActionHandler?, androidx.compose.foundation.text.input/TextFieldLineLimits?, kotlin/Function2<androidx.compose.ui.unit/Density, kotlin/Function0<androidx.compose.ui.text/TextLayoutResult?>, kotlin/Unit>?, androidx.compose.foundation/ScrollState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextField|TextField(androidx.compose.foundation.text.input.TextFieldState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;androidx.compose.material3.TextFieldLabelPosition?;kotlin.Function3<androidx.compose.material3.TextFieldLabelScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.foundation.text.input.InputTransformation?;androidx.compose.foundation.text.input.OutputTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.input.KeyboardActionHandler?;androidx.compose.foundation.text.input.TextFieldLineLimits?;kotlin.Function2<androidx.compose.ui.unit.Density,kotlin.Function0<androidx.compose.ui.text.TextLayoutResult?>,kotlin.Unit>?;androidx.compose.foundation.ScrollState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TextField(androidx.compose.ui.text.input/TextFieldValue, kotlin/Function1<androidx.compose.ui.text.input/TextFieldValue, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextField|TextField(androidx.compose.ui.text.input.TextFieldValue;kotlin.Function1<androidx.compose.ui.text.input.TextFieldValue,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TextField(kotlin/String, kotlin/Function1<kotlin/String, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.ui.text/TextStyle?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Boolean, androidx.compose.ui.text.input/VisualTransformation?, androidx.compose.foundation.text/KeyboardOptions?, androidx.compose.foundation.text/KeyboardActions?, kotlin/Boolean, kotlin/Int, kotlin/Int, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/TextFieldColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TextField|TextField(kotlin.String;kotlin.Function1<kotlin.String,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.ui.text.TextStyle?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Boolean;androidx.compose.ui.text.input.VisualTransformation?;androidx.compose.foundation.text.KeyboardOptions?;androidx.compose.foundation.text.KeyboardActions?;kotlin.Boolean;kotlin.Int;kotlin.Int;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.TextFieldColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TimeInput(androidx.compose.material3/TimePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/TimePickerColors?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TimeInput|TimeInput(androidx.compose.material3.TimePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.TimePickerColors?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TimePicker(androidx.compose.material3/TimePickerState, androidx.compose.ui/Modifier?, androidx.compose.material3/TimePickerColors?, androidx.compose.material3/TimePickerLayoutType, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TimePicker|TimePicker(androidx.compose.material3.TimePickerState;androidx.compose.ui.Modifier?;androidx.compose.material3.TimePickerColors?;androidx.compose.material3.TimePickerLayoutType;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TimePickerDialog(kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.window/DialogProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.graphics/Shape?, androidx.compose.ui.graphics/Color, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TimePickerDialog|TimePickerDialog(kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.window.DialogProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.graphics.Shape?;androidx.compose.ui.graphics.Color;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/TimePickerState(kotlin/Int, kotlin/Int, kotlin/Boolean): androidx.compose.material3/TimePickerState // androidx.compose.material3/TimePickerState|TimePickerState(kotlin.Int;kotlin.Int;kotlin.Boolean){}[0] -final fun androidx.compose.material3/ToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ToggleButtonShapes = ..., androidx.compose.material3/ToggleButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/ToggleButton|ToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes;androidx.compose.material3.ToggleButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/ToggleFloatingActionButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color> = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> = ..., kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp> = ..., kotlin/Function1<androidx.compose.material3/ToggleFloatingActionButtonScope, kotlin/Unit>) // androidx.compose.material3/ToggleFloatingActionButton|ToggleFloatingActionButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<kotlin.Float,androidx.compose.ui.graphics.Color>;androidx.compose.ui.Alignment;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>;kotlin.Function1<androidx.compose.material3.ToggleFloatingActionButtonScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/TonalToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/ToggleButtonShapes = ..., androidx.compose.material3/ToggleButtonColors = ..., androidx.compose.material3/ButtonElevation? = ..., androidx.compose.foundation/BorderStroke? = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit>) // androidx.compose.material3/TonalToggleButton|TonalToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes;androidx.compose.material3.ToggleButtonColors;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/TooltipBox(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function1<androidx.compose.material3/TooltipScope, kotlin/Unit>, androidx.compose.material3/TooltipState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/TooltipBox|TooltipBox(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function1<androidx.compose.material3.TooltipScope,kotlin.Unit>;androidx.compose.material3.TooltipState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/TooltipBox(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function1<androidx.compose.material3/TooltipScope, kotlin/Unit>, androidx.compose.material3/TooltipState, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/TooltipBox|TooltipBox(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function1<androidx.compose.material3.TooltipScope,kotlin.Unit>;androidx.compose.material3.TooltipState;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean;kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.material3/ToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ToggleButtonShapes?, androidx.compose.material3/ToggleButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/ToggleButton|ToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes?;androidx.compose.material3.ToggleButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/ToggleFloatingActionButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function1<kotlin/Float, androidx.compose.ui.graphics/Color>?, androidx.compose.ui/Alignment?, kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp>?, kotlin/Function1<kotlin/Float, androidx.compose.ui.unit/Dp>?, kotlin/Function3<androidx.compose.material3/ToggleFloatingActionButtonScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/ToggleFloatingActionButton|ToggleFloatingActionButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function1<kotlin.Float,androidx.compose.ui.graphics.Color>?;androidx.compose.ui.Alignment?;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>?;kotlin.Function1<kotlin.Float,androidx.compose.ui.unit.Dp>?;kotlin.Function3<androidx.compose.material3.ToggleFloatingActionButtonScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TonalToggleButton(kotlin/Boolean, kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/ToggleButtonShapes?, androidx.compose.material3/ToggleButtonColors?, androidx.compose.material3/ButtonElevation?, androidx.compose.foundation/BorderStroke?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TonalToggleButton|TonalToggleButton(kotlin.Boolean;kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.ToggleButtonShapes?;androidx.compose.material3.ToggleButtonColors?;androidx.compose.material3.ButtonElevation?;androidx.compose.foundation.BorderStroke?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TooltipBox(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function3<androidx.compose.material3/TooltipScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.material3/TooltipState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TooltipBox|TooltipBox(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function3<androidx.compose.material3.TooltipScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.material3.TooltipState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TooltipBox(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function3<androidx.compose.material3/TooltipScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.material3/TooltipState, androidx.compose.ui/Modifier?, kotlin/Function0<kotlin/Unit>?, kotlin/Boolean, kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TooltipBox|TooltipBox(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function3<androidx.compose.material3.TooltipScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.material3.TooltipState;androidx.compose.ui.Modifier?;kotlin.Function0<kotlin.Unit>?;kotlin.Boolean;kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/TooltipState(kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.foundation/MutatorMutex = ...): androidx.compose.material3/TooltipState // androidx.compose.material3/TooltipState|TooltipState(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.MutatorMutex){}[0] -final fun androidx.compose.material3/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/TopAppBar(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/TopAppBar(kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Alignment.Horizontal;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/TopSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/SearchBarColors = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/SearchBarScrollBehavior? = ...) // androidx.compose.material3/TopSearchBar|TopSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.graphics.Shape;androidx.compose.material3.SearchBarColors;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.SearchBarScrollBehavior?){}[0] -final fun androidx.compose.material3/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/CheckboxColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.CheckboxColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., androidx.compose.material3/CheckboxColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;androidx.compose.material3.CheckboxColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/TwoRowsTopAppBar(kotlin/Function1<kotlin/Boolean, kotlin/Unit>, androidx.compose.ui/Modifier = ..., kotlin/Function1<kotlin/Boolean, kotlin/Unit>? = ..., kotlin/Function0<kotlin/Unit> = ..., kotlin/Function1<androidx.compose.foundation.layout/RowScope, kotlin/Unit> = ..., androidx.compose.ui/Alignment.Horizontal = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.material3/TopAppBarColors = ..., androidx.compose.material3/TopAppBarScrollBehavior? = ...) // androidx.compose.material3/TwoRowsTopAppBar|TwoRowsTopAppBar(kotlin.Function1<kotlin.Boolean,kotlin.Unit>;androidx.compose.ui.Modifier;kotlin.Function1<kotlin.Boolean,kotlin.Unit>?;kotlin.Function0<kotlin.Unit>;kotlin.Function1<androidx.compose.foundation.layout.RowScope,kotlin.Unit>;androidx.compose.ui.Alignment.Horizontal;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets;androidx.compose.material3.TopAppBarColors;androidx.compose.material3.TopAppBarScrollBehavior?){}[0] -final fun androidx.compose.material3/VerticalDivider(androidx.compose.ui/Modifier = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...) // androidx.compose.material3/VerticalDivider|VerticalDivider(androidx.compose.ui.Modifier;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/VerticalDragHandle(androidx.compose.ui/Modifier = ..., androidx.compose.material3/DragHandleSizes = ..., androidx.compose.material3/DragHandleColors = ..., androidx.compose.material3/DragHandleShapes = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/VerticalDragHandle|VerticalDragHandle(androidx.compose.ui.Modifier;androidx.compose.material3.DragHandleSizes;androidx.compose.material3.DragHandleColors;androidx.compose.material3.DragHandleShapes;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/VerticalFloatingToolbar(kotlin/Boolean, androidx.compose.ui/Modifier = ..., androidx.compose.material3/FloatingToolbarColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.material3/FloatingToolbarScrollBehavior? = ..., androidx.compose.ui.graphics/Shape = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>? = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/VerticalFloatingToolbar|VerticalFloatingToolbar(kotlin.Boolean;androidx.compose.ui.Modifier;androidx.compose.material3.FloatingToolbarColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/VerticalFloatingToolbar(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.material3/FloatingToolbarColors = ..., androidx.compose.foundation.layout/PaddingValues = ..., androidx.compose.material3/FloatingToolbarScrollBehavior? = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/FloatingToolbarVerticalFabPosition = ..., androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float> = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., kotlin/Function1<androidx.compose.foundation.layout/ColumnScope, kotlin/Unit>) // androidx.compose.material3/VerticalFloatingToolbar|VerticalFloatingToolbar(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.material3.FloatingToolbarColors;androidx.compose.foundation.layout.PaddingValues;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape;androidx.compose.material3.FloatingToolbarVerticalFabPosition;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function1<androidx.compose.foundation.layout.ColumnScope,kotlin.Unit>){}[0] -final fun androidx.compose.material3/VerticalSlider(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.material3/SliderColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.material3/SliderState, kotlin/Unit> = ...) // androidx.compose.material3/VerticalSlider|VerticalSlider(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.material3.SliderColors;androidx.compose.foundation.interaction.MutableInteractionSource;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>;kotlin.Function1<androidx.compose.material3.SliderState,kotlin.Unit>){}[0] -final fun androidx.compose.material3/WideNavigationRail(androidx.compose.ui/Modifier = ..., androidx.compose.material3/WideNavigationRailState = ..., androidx.compose.ui.graphics/Shape = ..., androidx.compose.material3/WideNavigationRailColors = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.foundation.layout/WindowInsets = ..., androidx.compose.foundation.layout/Arrangement.Vertical = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.material3/WideNavigationRail|WideNavigationRail(androidx.compose.ui.Modifier;androidx.compose.material3.WideNavigationRailState;androidx.compose.ui.graphics.Shape;androidx.compose.material3.WideNavigationRailColors;kotlin.Function0<kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets;androidx.compose.foundation.layout.Arrangement.Vertical;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.material3/WideNavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier = ..., kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.material3/NavigationItemIconPosition = ..., androidx.compose.material3/NavigationItemColors = ..., androidx.compose.foundation.interaction/MutableInteractionSource? = ...) // androidx.compose.material3/WideNavigationRailItem|WideNavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier;kotlin.Boolean;kotlin.Boolean;androidx.compose.material3.NavigationItemIconPosition;androidx.compose.material3.NavigationItemColors;androidx.compose.foundation.interaction.MutableInteractionSource?){}[0] -final fun androidx.compose.material3/contentColorFor(androidx.compose.ui.graphics/Color): androidx.compose.ui.graphics/Color // androidx.compose.material3/contentColorFor|contentColorFor(androidx.compose.ui.graphics.Color){}[0] +final fun androidx.compose.material3/TopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TopAppBar(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TopAppBar|TopAppBar(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TopSearchBar(androidx.compose.material3/SearchBarState, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/SearchBarColors?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/SearchBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TopSearchBar|TopSearchBar(androidx.compose.material3.SearchBarState;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.SearchBarColors?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.SearchBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui.graphics.drawscope/Stroke, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/CheckboxColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.graphics.drawscope.Stroke;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.CheckboxColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TriStateCheckbox(androidx.compose.ui.state/ToggleableState, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, androidx.compose.material3/CheckboxColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/TriStateCheckbox|TriStateCheckbox(androidx.compose.ui.state.ToggleableState;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;androidx.compose.material3.CheckboxColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/TwoRowsTopAppBar(kotlin/Function3<kotlin/Boolean, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, kotlin/Function3<kotlin/Boolean, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/RowScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Alignment.Horizontal?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.material3/TopAppBarColors?, androidx.compose.material3/TopAppBarScrollBehavior?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/TwoRowsTopAppBar|TwoRowsTopAppBar(kotlin.Function3<kotlin.Boolean,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;kotlin.Function3<kotlin.Boolean,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.RowScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Alignment.Horizontal?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.material3.TopAppBarColors?;androidx.compose.material3.TopAppBarScrollBehavior?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/VerticalDivider(androidx.compose.ui/Modifier?, androidx.compose.ui.unit/Dp, androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/VerticalDivider|VerticalDivider(androidx.compose.ui.Modifier?;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/VerticalDragHandle(androidx.compose.ui/Modifier?, androidx.compose.material3/DragHandleSizes?, androidx.compose.material3/DragHandleColors?, androidx.compose.material3/DragHandleShapes?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/VerticalDragHandle|VerticalDragHandle(androidx.compose.ui.Modifier?;androidx.compose.material3.DragHandleSizes?;androidx.compose.material3.DragHandleColors?;androidx.compose.material3.DragHandleShapes?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/VerticalFloatingToolbar(kotlin/Boolean, androidx.compose.ui/Modifier?, androidx.compose.material3/FloatingToolbarColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.material3/FloatingToolbarScrollBehavior?, androidx.compose.ui.graphics/Shape?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/VerticalFloatingToolbar|VerticalFloatingToolbar(kotlin.Boolean;androidx.compose.ui.Modifier?;androidx.compose.material3.FloatingToolbarColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/VerticalFloatingToolbar(kotlin/Boolean, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.material3/FloatingToolbarColors?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.material3/FloatingToolbarScrollBehavior?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/FloatingToolbarVerticalFabPosition, androidx.compose.animation.core/FiniteAnimationSpec<kotlin/Float>?, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Function3<androidx.compose.foundation.layout/ColumnScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.material3/VerticalFloatingToolbar|VerticalFloatingToolbar(kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.material3.FloatingToolbarColors?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.material3.FloatingToolbarScrollBehavior?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.FloatingToolbarVerticalFabPosition;androidx.compose.animation.core.FiniteAnimationSpec<kotlin.Float>?;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Function3<androidx.compose.foundation.layout.ColumnScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/VerticalSlider(androidx.compose.material3/SliderState, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.material3/SliderColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, kotlin/Function3<androidx.compose.material3/SliderState, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/VerticalSlider|VerticalSlider(androidx.compose.material3.SliderState;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.material3.SliderColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;kotlin.Function3<androidx.compose.material3.SliderState,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/WideNavigationRail(androidx.compose.ui/Modifier?, androidx.compose.material3/WideNavigationRailState?, androidx.compose.ui.graphics/Shape?, androidx.compose.material3/WideNavigationRailColors?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.foundation.layout/WindowInsets?, androidx.compose.foundation.layout/Arrangement.Vertical?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/WideNavigationRail|WideNavigationRail(androidx.compose.ui.Modifier?;androidx.compose.material3.WideNavigationRailState?;androidx.compose.ui.graphics.Shape?;androidx.compose.material3.WideNavigationRailColors?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.foundation.layout.WindowInsets?;androidx.compose.foundation.layout.Arrangement.Vertical?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/WideNavigationRailItem(kotlin/Boolean, kotlin/Function0<kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>?, androidx.compose.ui/Modifier?, kotlin/Boolean, kotlin/Boolean, androidx.compose.material3/NavigationItemIconPosition, androidx.compose.material3/NavigationItemColors?, androidx.compose.foundation.interaction/MutableInteractionSource?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.material3/WideNavigationRailItem|WideNavigationRailItem(kotlin.Boolean;kotlin.Function0<kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>?;androidx.compose.ui.Modifier?;kotlin.Boolean;kotlin.Boolean;androidx.compose.material3.NavigationItemIconPosition;androidx.compose.material3.NavigationItemColors?;androidx.compose.foundation.interaction.MutableInteractionSource?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/androidx_compose_material3_AlertDialogDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_AlertDialogDefaults$stableprop_getter|androidx_compose_material3_AlertDialogDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_AnalogTimePickerState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_AnalogTimePickerState$stableprop_getter|androidx_compose_material3_AnalogTimePickerState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_AppBarMenuState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_AppBarMenuState$stableprop_getter|androidx_compose_material3_AppBarMenuState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_AppBarScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_AppBarScopeImpl$stableprop_getter|androidx_compose_material3_AppBarScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_AssistChipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_AssistChipDefaults$stableprop_getter|androidx_compose_material3_AssistChipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BadgeDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BadgeDefaults$stableprop_getter|androidx_compose_material3_BadgeDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BaseDatePickerStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BaseDatePickerStateImpl$stableprop_getter|androidx_compose_material3_BaseDatePickerStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop_getter|androidx_compose_material3_BasicAlertDialogOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BottomAppBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BottomAppBarDefaults$stableprop_getter|androidx_compose_material3_BottomAppBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BottomSheetDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BottomSheetDefaults$stableprop_getter|androidx_compose_material3_BottomSheetDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_BottomSheetScaffoldState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_BottomSheetScaffoldState$stableprop_getter|androidx_compose_material3_BottomSheetScaffoldState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonColors$stableprop_getter|androidx_compose_material3_ButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonDefaults$stableprop_getter|androidx_compose_material3_ButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonElevation$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonElevation$stableprop_getter|androidx_compose_material3_ButtonElevation$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonGroupDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonGroupDefaults$stableprop_getter|androidx_compose_material3_ButtonGroupDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonGroupElement$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonGroupElement$stableprop_getter|androidx_compose_material3_ButtonGroupElement$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonGroupMenuState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonGroupMenuState$stableprop_getter|androidx_compose_material3_ButtonGroupMenuState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonGroupNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonGroupNode$stableprop_getter|androidx_compose_material3_ButtonGroupNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonGroupParentData$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonGroupParentData$stableprop_getter|androidx_compose_material3_ButtonGroupParentData$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ButtonShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ButtonShapes$stableprop_getter|androidx_compose_material3_ButtonShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CalendarLocale$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CalendarLocale$stableprop_getter|androidx_compose_material3_CalendarLocale$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CardColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CardColors$stableprop_getter|androidx_compose_material3_CardColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CardDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CardDefaults$stableprop_getter|androidx_compose_material3_CardDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CardElevation$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CardElevation$stableprop_getter|androidx_compose_material3_CardElevation$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CheckboxColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CheckboxColors$stableprop_getter|androidx_compose_material3_CheckboxColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CheckboxDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CheckboxDefaults$stableprop_getter|androidx_compose_material3_CheckboxDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ChipBorder$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ChipBorder$stableprop_getter|androidx_compose_material3_ChipBorder$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ChipColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ChipColors$stableprop_getter|androidx_compose_material3_ChipColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ChipElevation$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ChipElevation$stableprop_getter|androidx_compose_material3_ChipElevation$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ClickableAppBarItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ClickableAppBarItem$stableprop_getter|androidx_compose_material3_ClickableAppBarItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ClickableButtonGroupItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ClickableButtonGroupItem$stableprop_getter|androidx_compose_material3_ClickableButtonGroupItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ClockDialModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ClockDialModifier$stableprop_getter|androidx_compose_material3_ClockDialModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ClockDialNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ClockDialNode$stableprop_getter|androidx_compose_material3_ClockDialNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ClockFaceSizeModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ClockFaceSizeModifier$stableprop_getter|androidx_compose_material3_ClockFaceSizeModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ColorScheme$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ColorScheme$stableprop_getter|androidx_compose_material3_ColorScheme$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CustomAppBarItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CustomAppBarItem$stableprop_getter|androidx_compose_material3_CustomAppBarItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_CustomButtonGroupItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_CustomButtonGroupItem$stableprop_getter|androidx_compose_material3_CustomButtonGroupItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DateInputValidator$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DateInputValidator$stableprop_getter|androidx_compose_material3_DateInputValidator$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DatePickerColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DatePickerColors$stableprop_getter|androidx_compose_material3_DatePickerColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DatePickerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DatePickerDefaults$stableprop_getter|androidx_compose_material3_DatePickerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DateRangePickerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DateRangePickerDefaults$stableprop_getter|androidx_compose_material3_DateRangePickerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop_getter|androidx_compose_material3_DefaultBasicAlertDialogOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop_getter|androidx_compose_material3_DefaultHorizontalFloatingToolbarOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop_getter|androidx_compose_material3_DefaultHorizontalFloatingToolbarWithFabOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultNavigationBarOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultNavigationBarOverride$stableprop_getter|androidx_compose_material3_DefaultNavigationBarOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultNavigationRailOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultNavigationRailOverride$stableprop_getter|androidx_compose_material3_DefaultNavigationRailOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop_getter|androidx_compose_material3_DefaultShortNavigationBarOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop_getter|androidx_compose_material3_DefaultSingleRowTopAppBarOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop_getter|androidx_compose_material3_DefaultTwoRowsTopAppBarOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop_getter|androidx_compose_material3_DefaultWideNavigationRailOverride$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DividerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DividerDefaults$stableprop_getter|androidx_compose_material3_DividerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DragHandleColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DragHandleColors$stableprop_getter|androidx_compose_material3_DragHandleColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DragHandleShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DragHandleShapes$stableprop_getter|androidx_compose_material3_DragHandleShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DragHandleSizes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DragHandleSizes$stableprop_getter|androidx_compose_material3_DragHandleSizes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DrawerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DrawerDefaults$stableprop_getter|androidx_compose_material3_DrawerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DrawerPredictiveBackState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DrawerPredictiveBackState$stableprop_getter|androidx_compose_material3_DrawerPredictiveBackState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_DrawerState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_DrawerState$stableprop_getter|androidx_compose_material3_DrawerState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_EnlargeOnPressElement$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_EnlargeOnPressElement$stableprop_getter|androidx_compose_material3_EnlargeOnPressElement$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_EnlargeOnPressNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_EnlargeOnPressNode$stableprop_getter|androidx_compose_material3_EnlargeOnPressNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop_getter|androidx_compose_material3_ExitAlwaysFloatingToolbarScrollBehavior$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop_getter|androidx_compose_material3_ExposedDropdownMenuBoxScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop_getter|androidx_compose_material3_ExposedDropdownMenuDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop_getter|androidx_compose_material3_ExposedDropdownMenuPositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FabPlacement$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FabPlacement$stableprop_getter|androidx_compose_material3_FabPlacement$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FabVisibleModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FabVisibleModifier$stableprop_getter|androidx_compose_material3_FabVisibleModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FabVisibleNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FabVisibleNode$stableprop_getter|androidx_compose_material3_FabVisibleNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FilterChipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FilterChipDefaults$stableprop_getter|androidx_compose_material3_FilterChipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingActionButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingActionButtonDefaults$stableprop_getter|androidx_compose_material3_FloatingActionButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingActionButtonElevation$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingActionButtonElevation$stableprop_getter|androidx_compose_material3_FloatingActionButtonElevation$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingToolbarColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingToolbarColors$stableprop_getter|androidx_compose_material3_FloatingToolbarColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults$stableprop_getter|androidx_compose_material3_FloatingToolbarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop_getter|androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionElement$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop_getter|androidx_compose_material3_FloatingToolbarDefaults_VerticalNestedScrollExpansionNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop_getter|androidx_compose_material3_HorizontalFloatingToolbarOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop_getter|androidx_compose_material3_HorizontalFloatingToolbarWithFabOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IconButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IconButtonColors$stableprop_getter|androidx_compose_material3_IconButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IconButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IconButtonDefaults$stableprop_getter|androidx_compose_material3_IconButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IconButtonShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IconButtonShapes$stableprop_getter|androidx_compose_material3_IconButtonShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IconToggleButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IconToggleButtonColors$stableprop_getter|androidx_compose_material3_IconToggleButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IconToggleButtonShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IconToggleButtonShapes$stableprop_getter|androidx_compose_material3_IconToggleButtonShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IndicatorLineElement$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IndicatorLineElement$stableprop_getter|androidx_compose_material3_IndicatorLineElement$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_IndicatorLineNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_IndicatorLineNode$stableprop_getter|androidx_compose_material3_IndicatorLineNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_InputChipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_InputChipDefaults$stableprop_getter|androidx_compose_material3_InputChipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ListItemColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ListItemColors$stableprop_getter|androidx_compose_material3_ListItemColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ListItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ListItemDefaults$stableprop_getter|androidx_compose_material3_ListItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_LoadingIndicatorDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_LoadingIndicatorDefaults$stableprop_getter|androidx_compose_material3_LoadingIndicatorDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MaterialShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MaterialShapes$stableprop_getter|androidx_compose_material3_MaterialShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MaterialTheme$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MaterialTheme$stableprop_getter|androidx_compose_material3_MaterialTheme$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MenuDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MenuDefaults$stableprop_getter|androidx_compose_material3_MenuDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MenuItemColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MenuItemColors$stableprop_getter|androidx_compose_material3_MenuItemColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifier$stableprop_getter|androidx_compose_material3_MinimumInteractiveModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_MinimumInteractiveModifierNode$stableprop_getter|androidx_compose_material3_MinimumInteractiveModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ModalBottomSheetDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ModalBottomSheetDefaults$stableprop_getter|androidx_compose_material3_ModalBottomSheetDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ModalBottomSheetProperties$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ModalBottomSheetProperties$stableprop_getter|androidx_compose_material3_ModalBottomSheetProperties$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop_getter|androidx_compose_material3_ModalWideNavigationRailDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailProperties$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailProperties$stableprop_getter|androidx_compose_material3_ModalWideNavigationRailProperties$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ModalWideNavigationRailState$stableprop_getter|androidx_compose_material3_ModalWideNavigationRailState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationBarDefaults$stableprop_getter|androidx_compose_material3_NavigationBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationBarItemColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationBarItemColors$stableprop_getter|androidx_compose_material3_NavigationBarItemColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationBarItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationBarItemDefaults$stableprop_getter|androidx_compose_material3_NavigationBarItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationBarOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationBarOverrideScope$stableprop_getter|androidx_compose_material3_NavigationBarOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationDrawerItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationDrawerItemDefaults$stableprop_getter|androidx_compose_material3_NavigationDrawerItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationItemColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationItemColors$stableprop_getter|androidx_compose_material3_NavigationItemColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationRailDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationRailDefaults$stableprop_getter|androidx_compose_material3_NavigationRailDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationRailItemColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationRailItemColors$stableprop_getter|androidx_compose_material3_NavigationRailItemColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationRailItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationRailItemDefaults$stableprop_getter|androidx_compose_material3_NavigationRailItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_NavigationRailOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_NavigationRailOverrideScope$stableprop_getter|androidx_compose_material3_NavigationRailOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_OutlinedTextFieldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_OutlinedTextFieldDefaults$stableprop_getter|androidx_compose_material3_OutlinedTextFieldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_OverflowMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_OverflowMeasurePolicy$stableprop_getter|androidx_compose_material3_OverflowMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ProgressIndicatorDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ProgressIndicatorDefaults$stableprop_getter|androidx_compose_material3_ProgressIndicatorDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RadioButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RadioButtonColors$stableprop_getter|androidx_compose_material3_RadioButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RadioButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RadioButtonDefaults$stableprop_getter|androidx_compose_material3_RadioButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RailPredictiveBackState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RailPredictiveBackState$stableprop_getter|androidx_compose_material3_RailPredictiveBackState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RangeSliderState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RangeSliderState$stableprop_getter|androidx_compose_material3_RangeSliderState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RichTooltipColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RichTooltipColors$stableprop_getter|androidx_compose_material3_RichTooltipColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RippleConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RippleConfiguration$stableprop_getter|androidx_compose_material3_RippleConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_RippleDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_RippleDefaults$stableprop_getter|androidx_compose_material3_RippleDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ScaffoldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ScaffoldDefaults$stableprop_getter|androidx_compose_material3_ScaffoldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SearchBarColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SearchBarColors$stableprop_getter|androidx_compose_material3_SearchBarColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SearchBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SearchBarDefaults$stableprop_getter|androidx_compose_material3_SearchBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SearchBarState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SearchBarState$stableprop_getter|androidx_compose_material3_SearchBarState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SegmentedButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SegmentedButtonColors$stableprop_getter|androidx_compose_material3_SegmentedButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop_getter|androidx_compose_material3_SegmentedButtonContentMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SegmentedButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SegmentedButtonDefaults$stableprop_getter|androidx_compose_material3_SegmentedButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SelectableChipColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SelectableChipColors$stableprop_getter|androidx_compose_material3_SelectableChipColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SelectableChipElevation$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SelectableChipElevation$stableprop_getter|androidx_compose_material3_SelectableChipElevation$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SelectedRangeInfo$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SelectedRangeInfo$stableprop_getter|androidx_compose_material3_SelectedRangeInfo$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ShapeDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ShapeDefaults$stableprop_getter|androidx_compose_material3_ShapeDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_Shapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_Shapes$stableprop_getter|androidx_compose_material3_Shapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SheetState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SheetState$stableprop_getter|androidx_compose_material3_SheetState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ShortNavigationBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarDefaults$stableprop_getter|androidx_compose_material3_ShortNavigationBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop_getter|androidx_compose_material3_ShortNavigationBarItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop_getter|androidx_compose_material3_ShortNavigationBarOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop_getter|androidx_compose_material3_SingleRowTopAppBarOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SliderColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SliderColors$stableprop_getter|androidx_compose_material3_SliderColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SliderDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SliderDefaults$stableprop_getter|androidx_compose_material3_SliderDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SliderPositions$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SliderPositions$stableprop_getter|androidx_compose_material3_SliderPositions$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SliderState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SliderState$stableprop_getter|androidx_compose_material3_SliderState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SnackbarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SnackbarDefaults$stableprop_getter|androidx_compose_material3_SnackbarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SnackbarHostState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SnackbarHostState$stableprop_getter|androidx_compose_material3_SnackbarHostState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SplitButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SplitButtonDefaults$stableprop_getter|androidx_compose_material3_SplitButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SplitButtonShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SplitButtonShapes$stableprop_getter|androidx_compose_material3_SplitButtonShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SuggestionChipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SuggestionChipDefaults$stableprop_getter|androidx_compose_material3_SuggestionChipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop_getter|androidx_compose_material3_SwipeToDismissBoxDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SwipeToDismissBoxState$stableprop_getter|androidx_compose_material3_SwipeToDismissBoxState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SwitchColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SwitchColors$stableprop_getter|androidx_compose_material3_SwitchColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_SwitchDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_SwitchDefaults$stableprop_getter|androidx_compose_material3_SwitchDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TabIndicatorModifier$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TabIndicatorModifier$stableprop_getter|androidx_compose_material3_TabIndicatorModifier$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TabIndicatorOffsetNode$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TabIndicatorOffsetNode$stableprop_getter|androidx_compose_material3_TabIndicatorOffsetNode$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TabPosition$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TabPosition$stableprop_getter|androidx_compose_material3_TabPosition$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TabRowDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TabRowDefaults$stableprop_getter|androidx_compose_material3_TabRowDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TextFieldColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TextFieldColors$stableprop_getter|androidx_compose_material3_TextFieldColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TextFieldDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TextFieldDefaults$stableprop_getter|androidx_compose_material3_TextFieldDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition$stableprop_getter|androidx_compose_material3_TextFieldLabelPosition$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Above$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Above$stableprop_getter|androidx_compose_material3_TextFieldLabelPosition_Above$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop_getter|androidx_compose_material3_TextFieldLabelPosition_Attached$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TimePickerColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TimePickerColors$stableprop_getter|androidx_compose_material3_TimePickerColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TimePickerDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TimePickerDefaults$stableprop_getter|androidx_compose_material3_TimePickerDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TimePickerDialogDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TimePickerDialogDefaults$stableprop_getter|androidx_compose_material3_TimePickerDialogDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleButtonColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleButtonColors$stableprop_getter|androidx_compose_material3_ToggleButtonColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleButtonDefaults$stableprop_getter|androidx_compose_material3_ToggleButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleButtonShapes$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleButtonShapes$stableprop_getter|androidx_compose_material3_ToggleButtonShapes$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop_getter|androidx_compose_material3_ToggleFloatingActionButtonDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleableAppBarItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleableAppBarItem$stableprop_getter|androidx_compose_material3_ToggleableAppBarItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_ToggleableButtonGroupItem$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_ToggleableButtonGroupItem$stableprop_getter|androidx_compose_material3_ToggleableButtonGroupItem$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TonalPalette$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TonalPalette$stableprop_getter|androidx_compose_material3_TonalPalette$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TooltipDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TooltipDefaults$stableprop_getter|androidx_compose_material3_TooltipDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TooltipScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TooltipScopeImpl$stableprop_getter|androidx_compose_material3_TooltipScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TopAppBarColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TopAppBarColors$stableprop_getter|androidx_compose_material3_TopAppBarColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TopAppBarDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TopAppBarDefaults$stableprop_getter|androidx_compose_material3_TopAppBarDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TopAppBarState$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TopAppBarState$stableprop_getter|androidx_compose_material3_TopAppBarState$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop_getter|androidx_compose_material3_TwoRowsTopAppBarOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_Typography$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_Typography$stableprop_getter|androidx_compose_material3_Typography$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_VerticalDragHandleDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_VerticalDragHandleDefaults$stableprop_getter|androidx_compose_material3_VerticalDragHandleDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop_getter|androidx_compose_material3_WavyProgressIndicatorDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WideNavigationRailColors$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WideNavigationRailColors$stableprop_getter|androidx_compose_material3_WideNavigationRailColors$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WideNavigationRailDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WideNavigationRailDefaults$stableprop_getter|androidx_compose_material3_WideNavigationRailDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WideNavigationRailItemDefaults$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WideNavigationRailItemDefaults$stableprop_getter|androidx_compose_material3_WideNavigationRailItemDefaults$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WideNavigationRailOverrideScope$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WideNavigationRailOverrideScope$stableprop_getter|androidx_compose_material3_WideNavigationRailOverrideScope$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WideNavigationRailStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WideNavigationRailStateImpl$stableprop_getter|androidx_compose_material3_WideNavigationRailStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.material3/androidx_compose_material3_WindowBoundsCalculator$stableprop_getter(): kotlin/Int // androidx.compose.material3/androidx_compose_material3_WindowBoundsCalculator$stableprop_getter|androidx_compose_material3_WindowBoundsCalculator$stableprop_getter(){}[0] +final fun androidx.compose.material3/contentColorFor(androidx.compose.ui.graphics/Color, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics/Color // androidx.compose.material3/contentColorFor|contentColorFor(androidx.compose.ui.graphics.Color;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.material3/darkColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/darkColorScheme|darkColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] final fun androidx.compose.material3/darkColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/darkColorScheme|darkColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] final fun androidx.compose.material3/darkColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/darkColorScheme|darkColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] @@ -3980,22 +4666,22 @@ final fun androidx.compose.material3/lightColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/lightColorScheme|lightColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] final fun androidx.compose.material3/lightColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/lightColorScheme|lightColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] final fun androidx.compose.material3/lightColorScheme(androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.material3/ColorScheme // androidx.compose.material3/lightColorScheme|lightColorScheme(androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.Color){}[0] -final fun androidx.compose.material3/rememberBottomAppBarState(kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ...): androidx.compose.material3/BottomAppBarState // androidx.compose.material3/rememberBottomAppBarState|rememberBottomAppBarState(kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.material3/rememberBottomSheetScaffoldState(androidx.compose.material3/SheetState = ..., androidx.compose.material3/SnackbarHostState = ...): androidx.compose.material3/BottomSheetScaffoldState // androidx.compose.material3/rememberBottomSheetScaffoldState|rememberBottomSheetScaffoldState(androidx.compose.material3.SheetState;androidx.compose.material3.SnackbarHostState){}[0] -final fun androidx.compose.material3/rememberDatePickerState(kotlin/Long? = ..., kotlin/Long? = ..., kotlin.ranges/IntRange = ..., androidx.compose.material3/DisplayMode = ..., androidx.compose.material3/SelectableDates = ...): androidx.compose.material3/DatePickerState // androidx.compose.material3/rememberDatePickerState|rememberDatePickerState(kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates){}[0] -final fun androidx.compose.material3/rememberDateRangePickerState(kotlin/Long? = ..., kotlin/Long? = ..., kotlin/Long? = ..., kotlin.ranges/IntRange = ..., androidx.compose.material3/DisplayMode = ..., androidx.compose.material3/SelectableDates = ...): androidx.compose.material3/DateRangePickerState // androidx.compose.material3/rememberDateRangePickerState|rememberDateRangePickerState(kotlin.Long?;kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates){}[0] -final fun androidx.compose.material3/rememberDrawerState(androidx.compose.material3/DrawerValue, kotlin/Function1<androidx.compose.material3/DrawerValue, kotlin/Boolean> = ...): androidx.compose.material3/DrawerState // androidx.compose.material3/rememberDrawerState|rememberDrawerState(androidx.compose.material3.DrawerValue;kotlin.Function1<androidx.compose.material3.DrawerValue,kotlin.Boolean>){}[0] -final fun androidx.compose.material3/rememberFloatingToolbarState(kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ...): androidx.compose.material3/FloatingToolbarState // androidx.compose.material3/rememberFloatingToolbarState|rememberFloatingToolbarState(kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.material3/rememberModalBottomSheetState(kotlin/Boolean = ..., kotlin/Function1<androidx.compose.material3/SheetValue, kotlin/Boolean> = ...): androidx.compose.material3/SheetState // androidx.compose.material3/rememberModalBottomSheetState|rememberModalBottomSheetState(kotlin.Boolean;kotlin.Function1<androidx.compose.material3.SheetValue,kotlin.Boolean>){}[0] -final fun androidx.compose.material3/rememberRangeSliderState(kotlin/Float = ..., kotlin/Float = ..., kotlin/Int = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ...): androidx.compose.material3/RangeSliderState // androidx.compose.material3/rememberRangeSliderState|rememberRangeSliderState(kotlin.Float;kotlin.Float;kotlin.Int;kotlin.Function0<kotlin.Unit>?;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>){}[0] -final fun androidx.compose.material3/rememberSearchBarState(androidx.compose.material3/SearchBarValue = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ..., androidx.compose.animation.core/AnimationSpec<kotlin/Float> = ...): androidx.compose.material3/SearchBarState // androidx.compose.material3/rememberSearchBarState|rememberSearchBarState(androidx.compose.material3.SearchBarValue;androidx.compose.animation.core.AnimationSpec<kotlin.Float>;androidx.compose.animation.core.AnimationSpec<kotlin.Float>){}[0] -final fun androidx.compose.material3/rememberSliderState(kotlin/Float = ..., kotlin/Int = ..., kotlin/Function0<kotlin/Unit>? = ..., kotlin.ranges/ClosedFloatingPointRange<kotlin/Float> = ...): androidx.compose.material3/SliderState // androidx.compose.material3/rememberSliderState|rememberSliderState(kotlin.Float;kotlin.Int;kotlin.Function0<kotlin.Unit>?;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>){}[0] -final fun androidx.compose.material3/rememberStandardBottomSheetState(androidx.compose.material3/SheetValue = ..., kotlin/Function1<androidx.compose.material3/SheetValue, kotlin/Boolean> = ..., kotlin/Boolean = ...): androidx.compose.material3/SheetState // androidx.compose.material3/rememberStandardBottomSheetState|rememberStandardBottomSheetState(androidx.compose.material3.SheetValue;kotlin.Function1<androidx.compose.material3.SheetValue,kotlin.Boolean>;kotlin.Boolean){}[0] -final fun androidx.compose.material3/rememberSwipeToDismissBoxState(androidx.compose.material3/SwipeToDismissBoxValue = ..., kotlin/Function1<androidx.compose.material3/SwipeToDismissBoxValue, kotlin/Boolean> = ..., kotlin/Function1<kotlin/Float, kotlin/Float> = ...): androidx.compose.material3/SwipeToDismissBoxState // androidx.compose.material3/rememberSwipeToDismissBoxState|rememberSwipeToDismissBoxState(androidx.compose.material3.SwipeToDismissBoxValue;kotlin.Function1<androidx.compose.material3.SwipeToDismissBoxValue,kotlin.Boolean>;kotlin.Function1<kotlin.Float,kotlin.Float>){}[0] -final fun androidx.compose.material3/rememberSwipeToDismissBoxState(androidx.compose.material3/SwipeToDismissBoxValue = ..., kotlin/Function1<kotlin/Float, kotlin/Float> = ...): androidx.compose.material3/SwipeToDismissBoxState // androidx.compose.material3/rememberSwipeToDismissBoxState|rememberSwipeToDismissBoxState(androidx.compose.material3.SwipeToDismissBoxValue;kotlin.Function1<kotlin.Float,kotlin.Float>){}[0] -final fun androidx.compose.material3/rememberTimePickerState(kotlin/Int = ..., kotlin/Int = ..., kotlin/Boolean = ...): androidx.compose.material3/TimePickerState // androidx.compose.material3/rememberTimePickerState|rememberTimePickerState(kotlin.Int;kotlin.Int;kotlin.Boolean){}[0] -final fun androidx.compose.material3/rememberTooltipState(kotlin/Boolean = ..., kotlin/Boolean = ..., androidx.compose.foundation/MutatorMutex = ...): androidx.compose.material3/TooltipState // androidx.compose.material3/rememberTooltipState|rememberTooltipState(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.MutatorMutex){}[0] -final fun androidx.compose.material3/rememberTopAppBarState(kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ...): androidx.compose.material3/TopAppBarState // androidx.compose.material3/rememberTopAppBarState|rememberTopAppBarState(kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.material3/rememberWideNavigationRailState(androidx.compose.material3/WideNavigationRailValue = ...): androidx.compose.material3/WideNavigationRailState // androidx.compose.material3/rememberWideNavigationRailState|rememberWideNavigationRailState(androidx.compose.material3.WideNavigationRailValue){}[0] +final fun androidx.compose.material3/rememberBottomAppBarState(kotlin/Float, kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/BottomAppBarState // androidx.compose.material3/rememberBottomAppBarState|rememberBottomAppBarState(kotlin.Float;kotlin.Float;kotlin.Float;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberBottomSheetScaffoldState(androidx.compose.material3/SheetState?, androidx.compose.material3/SnackbarHostState?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/BottomSheetScaffoldState // androidx.compose.material3/rememberBottomSheetScaffoldState|rememberBottomSheetScaffoldState(androidx.compose.material3.SheetState?;androidx.compose.material3.SnackbarHostState?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberDatePickerState(kotlin/Long?, kotlin/Long?, kotlin.ranges/IntRange?, androidx.compose.material3/DisplayMode, androidx.compose.material3/SelectableDates?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/DatePickerState // androidx.compose.material3/rememberDatePickerState|rememberDatePickerState(kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange?;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberDateRangePickerState(kotlin/Long?, kotlin/Long?, kotlin/Long?, kotlin.ranges/IntRange?, androidx.compose.material3/DisplayMode, androidx.compose.material3/SelectableDates?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/DateRangePickerState // androidx.compose.material3/rememberDateRangePickerState|rememberDateRangePickerState(kotlin.Long?;kotlin.Long?;kotlin.Long?;kotlin.ranges.IntRange?;androidx.compose.material3.DisplayMode;androidx.compose.material3.SelectableDates?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberDrawerState(androidx.compose.material3/DrawerValue, kotlin/Function1<androidx.compose.material3/DrawerValue, kotlin/Boolean>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/DrawerState // androidx.compose.material3/rememberDrawerState|rememberDrawerState(androidx.compose.material3.DrawerValue;kotlin.Function1<androidx.compose.material3.DrawerValue,kotlin.Boolean>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberFloatingToolbarState(kotlin/Float, kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/FloatingToolbarState // androidx.compose.material3/rememberFloatingToolbarState|rememberFloatingToolbarState(kotlin.Float;kotlin.Float;kotlin.Float;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberModalBottomSheetState(kotlin/Boolean, kotlin/Function1<androidx.compose.material3/SheetValue, kotlin/Boolean>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SheetState // androidx.compose.material3/rememberModalBottomSheetState|rememberModalBottomSheetState(kotlin.Boolean;kotlin.Function1<androidx.compose.material3.SheetValue,kotlin.Boolean>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberRangeSliderState(kotlin/Float, kotlin/Float, kotlin/Int, kotlin/Function0<kotlin/Unit>?, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/RangeSliderState // androidx.compose.material3/rememberRangeSliderState|rememberRangeSliderState(kotlin.Float;kotlin.Float;kotlin.Int;kotlin.Function0<kotlin.Unit>?;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberSearchBarState(androidx.compose.material3/SearchBarValue?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.animation.core/AnimationSpec<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SearchBarState // androidx.compose.material3/rememberSearchBarState|rememberSearchBarState(androidx.compose.material3.SearchBarValue?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.animation.core.AnimationSpec<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberSliderState(kotlin/Float, kotlin/Int, kotlin/Function0<kotlin/Unit>?, kotlin.ranges/ClosedFloatingPointRange<kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SliderState // androidx.compose.material3/rememberSliderState|rememberSliderState(kotlin.Float;kotlin.Int;kotlin.Function0<kotlin.Unit>?;kotlin.ranges.ClosedFloatingPointRange<kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberStandardBottomSheetState(androidx.compose.material3/SheetValue?, kotlin/Function1<androidx.compose.material3/SheetValue, kotlin/Boolean>?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SheetState // androidx.compose.material3/rememberStandardBottomSheetState|rememberStandardBottomSheetState(androidx.compose.material3.SheetValue?;kotlin.Function1<androidx.compose.material3.SheetValue,kotlin.Boolean>?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberSwipeToDismissBoxState(androidx.compose.material3/SwipeToDismissBoxValue?, kotlin/Function1<androidx.compose.material3/SwipeToDismissBoxValue, kotlin/Boolean>?, kotlin/Function1<kotlin/Float, kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SwipeToDismissBoxState // androidx.compose.material3/rememberSwipeToDismissBoxState|rememberSwipeToDismissBoxState(androidx.compose.material3.SwipeToDismissBoxValue?;kotlin.Function1<androidx.compose.material3.SwipeToDismissBoxValue,kotlin.Boolean>?;kotlin.Function1<kotlin.Float,kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberSwipeToDismissBoxState(androidx.compose.material3/SwipeToDismissBoxValue?, kotlin/Function1<kotlin/Float, kotlin/Float>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/SwipeToDismissBoxState // androidx.compose.material3/rememberSwipeToDismissBoxState|rememberSwipeToDismissBoxState(androidx.compose.material3.SwipeToDismissBoxValue?;kotlin.Function1<kotlin.Float,kotlin.Float>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberTimePickerState(kotlin/Int, kotlin/Int, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TimePickerState // androidx.compose.material3/rememberTimePickerState|rememberTimePickerState(kotlin.Int;kotlin.Int;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberTooltipState(kotlin/Boolean, kotlin/Boolean, androidx.compose.foundation/MutatorMutex?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TooltipState // androidx.compose.material3/rememberTooltipState|rememberTooltipState(kotlin.Boolean;kotlin.Boolean;androidx.compose.foundation.MutatorMutex?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberTopAppBarState(kotlin/Float, kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/TopAppBarState // androidx.compose.material3/rememberTopAppBarState|rememberTopAppBarState(kotlin.Float;kotlin.Float;kotlin.Float;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.material3/rememberWideNavigationRailState(androidx.compose.material3/WideNavigationRailValue?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.material3/WideNavigationRailState // androidx.compose.material3/rememberWideNavigationRailState|rememberWideNavigationRailState(androidx.compose.material3.WideNavigationRailValue?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.material3/ripple(androidx.compose.ui.graphics/ColorProducer, kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.foundation/IndicationNodeFactory // androidx.compose.material3/ripple|ripple(androidx.compose.ui.graphics.ColorProducer;kotlin.Boolean;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.material3/ripple(kotlin/Boolean = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.graphics/Color = ...): androidx.compose.foundation/IndicationNodeFactory // androidx.compose.material3/ripple|ripple(kotlin.Boolean;androidx.compose.ui.unit.Dp;androidx.compose.ui.graphics.Color){}[0]
diff --git a/compose/runtime/runtime-saveable/bcv/native/current.ignore b/compose/runtime/runtime-saveable/bcv/native/current.ignore new file mode 100644 index 0000000..bfa39fd --- /dev/null +++ b/compose/runtime/runtime-saveable/bcv/native/current.ignore
@@ -0,0 +1,6 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>, androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/String?, kotlin/Function0<#A>) from androidx.compose.runtime:runtime-saveable +[linuxX64]: Removed declaration androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>, androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/String?, kotlin/Function0<androidx.compose.runtime/MutableState<#A>>) from androidx.compose.runtime:runtime-saveable +[linuxX64]: Removed declaration androidx.compose.runtime.saveable/rememberSaveableStateHolder() from androidx.compose.runtime:runtime-saveable +[linuxX64]: Removed declaration SaveableStateProvider(kotlin/Any, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime.saveable/SaveableStateHolder +[linuxX64]: Added declaration SaveableStateProvider(kotlin/Any, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.runtime.saveable/SaveableStateHolder \ No newline at end of file
diff --git a/compose/runtime/runtime-saveable/bcv/native/current.txt b/compose/runtime/runtime-saveable/bcv/native/current.txt index 318aa42..dbe1ac4 100644 --- a/compose/runtime/runtime-saveable/bcv/native/current.txt +++ b/compose/runtime/runtime-saveable/bcv/native/current.txt
@@ -16,7 +16,7 @@ } abstract interface androidx.compose.runtime.saveable/SaveableStateHolder { // androidx.compose.runtime.saveable/SaveableStateHolder|null[0] - abstract fun SaveableStateProvider(kotlin/Any, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime.saveable/SaveableStateHolder.SaveableStateProvider|SaveableStateProvider(kotlin.Any;kotlin.Function0<kotlin.Unit>){}[0] + abstract fun SaveableStateProvider(kotlin/Any, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime.saveable/SaveableStateHolder.SaveableStateProvider|SaveableStateProvider(kotlin.Any;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] abstract fun removeState(kotlin/Any) // androidx.compose.runtime.saveable/SaveableStateHolder.removeState|removeState(kotlin.Any){}[0] } @@ -33,19 +33,19 @@ final val androidx.compose.runtime.saveable/LocalSaveableStateRegistry // androidx.compose.runtime.saveable/LocalSaveableStateRegistry|{}LocalSaveableStateRegistry[0] final fun <get-LocalSaveableStateRegistry>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.runtime.saveable/SaveableStateRegistry?> // androidx.compose.runtime.saveable/LocalSaveableStateRegistry.<get-LocalSaveableStateRegistry>|<get-LocalSaveableStateRegistry>(){}[0] +final val androidx.compose.runtime.saveable/androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop // androidx.compose.runtime.saveable/androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop|#static{}androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop[0] -final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any> = ..., kotlin/String? = ..., kotlin/Function0<#A>): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.String?;kotlin.Function0<0:0>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/Function0<#A>): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.Function0<0:0>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., kotlin/Function0<#A>): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;kotlin.Function0<0:0>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSerializable(kotlin/Array<out kotlin/Any?>..., kotlinx.serialization/KSerializer<#A>, androidx.savedstate.serialization/SavedStateConfiguration = ..., kotlin/Function0<#A>): #A // androidx.compose.runtime.saveable/rememberSerializable|rememberSerializable(kotlin.Array<out|kotlin.Any?>...;kotlinx.serialization.KSerializer<0:0>;androidx.savedstate.serialization.SavedStateConfiguration;kotlin.Function0<0:0>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSerializable(kotlin/Array<out kotlin/Any?>..., kotlinx.serialization/KSerializer<#A>, androidx.savedstate.serialization/SavedStateConfiguration = ..., kotlin/Function0<androidx.compose.runtime/MutableState<#A>>): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSerializable|rememberSerializable(kotlin.Array<out|kotlin.Any?>...;kotlinx.serialization.KSerializer<0:0>;androidx.savedstate.serialization.SavedStateConfiguration;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>?, kotlin/String?, kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>?;kotlin.String?;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., kotlinx.serialization/KSerializer<#A>, androidx.savedstate.serialization/SavedStateConfiguration?, kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): #A // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;kotlinx.serialization.KSerializer<0:0>;androidx.savedstate.serialization.SavedStateConfiguration?;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., kotlinx.serialization/KSerializer<#A>, androidx.savedstate.serialization/SavedStateConfiguration?, kotlin/Function0<androidx.compose.runtime/MutableState<#A>>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;kotlinx.serialization.KSerializer<0:0>;androidx.savedstate.serialization.SavedStateConfiguration?;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any>}[0] final fun <#A: kotlin/Any?, #B: kotlin/Any> androidx.compose.runtime.saveable/Saver(kotlin/Function2<androidx.compose.runtime.saveable/SaverScope, #A, #B?>, kotlin/Function1<#B, #A?>): androidx.compose.runtime.saveable/Saver<#A, #B> // androidx.compose.runtime.saveable/Saver|Saver(kotlin.Function2<androidx.compose.runtime.saveable.SaverScope,0:0,0:1?>;kotlin.Function1<0:1,0:0?>){0§<kotlin.Any?>;1§<kotlin.Any>}[0] final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime.saveable/listSaver(kotlin/Function2<androidx.compose.runtime.saveable/SaverScope, #A, kotlin.collections/List<#B>>, kotlin/Function1<kotlin.collections/List<#B>, #A?>): androidx.compose.runtime.saveable/Saver<#A, kotlin/Any> // androidx.compose.runtime.saveable/listSaver|listSaver(kotlin.Function2<androidx.compose.runtime.saveable.SaverScope,0:0,kotlin.collections.List<0:1>>;kotlin.Function1<kotlin.collections.List<0:1>,0:0?>){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/autoSaver(): androidx.compose.runtime.saveable/Saver<#A, kotlin/Any> // androidx.compose.runtime.saveable/autoSaver|autoSaver(){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/mapSaver(kotlin/Function2<androidx.compose.runtime.saveable/SaverScope, #A, kotlin.collections/Map<kotlin/String, kotlin/Any?>>, kotlin/Function1<kotlin.collections/Map<kotlin/String, kotlin/Any?>, #A?>): androidx.compose.runtime.saveable/Saver<#A, kotlin/Any> // androidx.compose.runtime.saveable/mapSaver|mapSaver(kotlin.Function2<androidx.compose.runtime.saveable.SaverScope,0:0,kotlin.collections.Map<kotlin.String,kotlin.Any?>>;kotlin.Function1<kotlin.collections.Map<kotlin.String,kotlin.Any?>,0:0?>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/Function0<androidx.compose.runtime/MutableState<#A>>): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/String? = ..., kotlin/Function0<androidx.compose.runtime/MutableState<#A>>): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.String?;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/Function0<androidx.compose.runtime/MutableState<#A>>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime.saveable/rememberSaveable(kotlin/Array<out kotlin/Any?>..., androidx.compose.runtime.saveable/Saver<#A, out kotlin/Any>, kotlin/String?, kotlin/Function0<androidx.compose.runtime/MutableState<#A>>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSaveable|rememberSaveable(kotlin.Array<out|kotlin.Any?>...;androidx.compose.runtime.saveable.Saver<0:0,out|kotlin.Any>;kotlin.String?;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] final fun androidx.compose.runtime.saveable/SaveableStateRegistry(kotlin.collections/Map<kotlin/String, kotlin.collections/List<kotlin/Any?>>?, kotlin/Function1<kotlin/Any, kotlin/Boolean>): androidx.compose.runtime.saveable/SaveableStateRegistry // androidx.compose.runtime.saveable/SaveableStateRegistry|SaveableStateRegistry(kotlin.collections.Map<kotlin.String,kotlin.collections.List<kotlin.Any?>>?;kotlin.Function1<kotlin.Any,kotlin.Boolean>){}[0] -final fun androidx.compose.runtime.saveable/rememberSaveableStateHolder(): androidx.compose.runtime.saveable/SaveableStateHolder // androidx.compose.runtime.saveable/rememberSaveableStateHolder|rememberSaveableStateHolder(){}[0] -final inline fun <#A: reified kotlin/Any> androidx.compose.runtime.saveable/rememberSerializable(kotlin/Array<out kotlin/Any?>..., androidx.savedstate.serialization/SavedStateConfiguration = ..., noinline kotlin/Function0<#A>): #A // androidx.compose.runtime.saveable/rememberSerializable|rememberSerializable(kotlin.Array<out|kotlin.Any?>...;androidx.savedstate.serialization.SavedStateConfiguration;kotlin.Function0<0:0>){0§<kotlin.Any>}[0] -final inline fun <#A: reified kotlin/Any> androidx.compose.runtime.saveable/rememberSerializable(kotlin/Array<out kotlin/Any?>..., androidx.savedstate.serialization/SavedStateConfiguration = ..., noinline kotlin/Function0<androidx.compose.runtime/MutableState<#A>>): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime.saveable/rememberSerializable|rememberSerializable(kotlin.Array<out|kotlin.Any?>...;androidx.savedstate.serialization.SavedStateConfiguration;kotlin.Function0<androidx.compose.runtime.MutableState<0:0>>){0§<kotlin.Any>}[0] +final fun androidx.compose.runtime.saveable/androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop_getter(): kotlin/Int // androidx.compose.runtime.saveable/androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop_getter|androidx_compose_runtime_saveable_SaveableStateRegistryWrapper$stableprop_getter(){}[0] +final fun androidx.compose.runtime.saveable/rememberSaveableStateHolder(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime.saveable/SaveableStateHolder // androidx.compose.runtime.saveable/rememberSaveableStateHolder|rememberSaveableStateHolder(androidx.compose.runtime.Composer?;kotlin.Int){}[0]
diff --git a/compose/runtime/runtime/bcv/native/current.ignore b/compose/runtime/runtime/bcv/native/current.ignore index bc9f69fa..2913bd4 100644 --- a/compose/runtime/runtime/bcv/native/current.ignore +++ b/compose/runtime/runtime/bcv/native/current.ignore
@@ -1,4 +1,80 @@ // Baseline format: 1.0 [linuxX64]: Removed declaration androidx.compose.runtime/Immutable from androidx.compose.runtime:runtime [linuxX64]: Removed declaration androidx.compose.runtime/Stable from androidx.compose.runtime:runtime -[linuxX64]: Removed declaration androidx.compose.runtime/StableMarker from androidx.compose.runtime:runtime \ No newline at end of file +[linuxX64]: Removed declaration androidx.compose.runtime/StableMarker from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/Flow<#A>).androidx.compose.runtime/collectAsState(#B, kotlin.coroutines/CoroutineContext) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentOf(kotlin/Function4<#A, #B, #C, #D, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function4<#A, #B, #C, #D, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentOf(kotlin/Function3<#A, #B, #C, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function3<#A, #B, #C, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentOf(kotlin/Function2<#A, #B, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function2<#A, #B, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/StateFlow<#A>).androidx.compose.runtime/collectAsState(kotlin.coroutines/CoroutineContext) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentOf(kotlin/Function1<#A, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function1<#A, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/produceState(#A, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/produceState(#A, kotlin/Array<out kotlin/Any?>, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/rememberUpdatedState(#A) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime.internal/rememberComposableLambda(kotlin/Int, kotlin/Boolean, kotlin/Any) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/CompositionLocalContext, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/ProvidedValue<*>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/CompositionLocalProvider(kotlin/Array<out androidx.compose.runtime/ProvidedValue<*>>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/DisposableEffect(kotlin/Array<out kotlin/Any?>, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/DisposableEffect(kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/LaunchedEffect(kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/LaunchedEffect(kotlin/Array<out kotlin/Any?>, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/SideEffect(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/movableContentOf(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/rememberCompositionContext() from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ReusableComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function1<androidx.compose.runtime/SkippableUpdater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ReusableComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ReusableComposeNode(kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function1<androidx.compose.runtime/SkippableUpdater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/key(kotlin/Array<out kotlin/Any?>, kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/remember(kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/remember(kotlin/Any?, kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/remember(kotlin/Array<out kotlin/Any?>, kotlin/Function0<#A>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ReusableContent(kotlin/Any?, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/ReusableContentHost(kotlin/Boolean, kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration androidx.compose.runtime/rememberCoroutineScope(kotlin/Function0<kotlin.coroutines/CoroutineContext>) from androidx.compose.runtime:runtime +[linuxX64]: Removed declaration setContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/Composition +[linuxX64]: Added declaration setContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/Composition +[linuxX64]: Removed declaration composeContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/ControlledComposition +[linuxX64]: Removed declaration setContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/ControlledComposition +[linuxX64]: Added declaration composeContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/ControlledComposition +[linuxX64]: Added declaration setContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/ControlledComposition +[linuxX64]: Removed declaration setPausableContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/PausableComposition +[linuxX64]: Removed declaration setPausableContentWithReuse(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/PausableComposition +[linuxX64]: Removed declaration setContentWithReuse(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/PausableComposition +[linuxX64]: Removed declaration setContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/PausableComposition +[linuxX64]: Added declaration setPausableContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/PausableComposition +[linuxX64]: Added declaration setPausableContentWithReuse(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/PausableComposition +[linuxX64]: Added declaration setContentWithReuse(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/PausableComposition +[linuxX64]: Added declaration setContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/PausableComposition +[linuxX64]: Removed declaration setContentWithReuse(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/ReusableComposition +[linuxX64]: Removed declaration setContent(kotlin/Function0<kotlin/Unit>) from androidx.compose.runtime/ReusableComposition +[linuxX64]: Added declaration setContentWithReuse(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/ReusableComposition +[linuxX64]: Added declaration setContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.runtime/ReusableComposition +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.runtime/CompositionLocal.current.<get-current> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.runtime/CompositionLocal.current.<get-current> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.runtime/currentComposer.<get-currentComposer> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.runtime/currentComposer.<get-currentComposer> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.runtime/currentCompositeKeyHash.<get-currentCompositeKeyHash> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.runtime/currentCompositeKeyHash.<get-currentCompositeKeyHash> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.runtime/currentCompositionLocalContext.<get-currentCompositionLocalContext> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.runtime/currentCompositionLocalContext.<get-currentCompositionLocalContext> +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.compose.runtime/currentRecomposeScope.<get-currentRecomposeScope> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.compose.runtime/currentRecomposeScope.<get-currentRecomposeScope> \ No newline at end of file
diff --git a/compose/runtime/runtime/bcv/native/current.txt b/compose/runtime/runtime/bcv/native/current.txt index 778cb24..7e0ace3 100644 --- a/compose/runtime/runtime/bcv/native/current.txt +++ b/compose/runtime/runtime/bcv/native/current.txt
@@ -256,7 +256,7 @@ abstract fun <get-isDisposed>(): kotlin/Boolean // androidx.compose.runtime/Composition.isDisposed.<get-isDisposed>|<get-isDisposed>(){}[0] abstract fun dispose() // androidx.compose.runtime/Composition.dispose|dispose(){}[0] - abstract fun setContent(kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/Composition.setContent|setContent(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun setContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.runtime/Composition.setContent|setContent(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } abstract interface androidx.compose.runtime/CompositionLocalAccessorScope { // androidx.compose.runtime/CompositionLocalAccessorScope|null[0] @@ -461,7 +461,7 @@ abstract fun applyChanges() // androidx.compose.runtime/ControlledComposition.applyChanges|applyChanges(){}[0] abstract fun applyLateChanges() // androidx.compose.runtime/ControlledComposition.applyLateChanges|applyLateChanges(){}[0] abstract fun changesApplied() // androidx.compose.runtime/ControlledComposition.changesApplied|changesApplied(){}[0] - abstract fun composeContent(kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ControlledComposition.composeContent|composeContent(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun composeContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.runtime/ControlledComposition.composeContent|composeContent(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] abstract fun getAndSetShouldPauseCallback(androidx.compose.runtime/ShouldPauseCallback?): androidx.compose.runtime/ShouldPauseCallback? // androidx.compose.runtime/ControlledComposition.getAndSetShouldPauseCallback|getAndSetShouldPauseCallback(androidx.compose.runtime.ShouldPauseCallback?){}[0] abstract fun invalidateAll() // androidx.compose.runtime/ControlledComposition.invalidateAll|invalidateAll(){}[0] abstract fun observesAnyOf(kotlin.collections/Set<kotlin/Any>): kotlin/Boolean // androidx.compose.runtime/ControlledComposition.observesAnyOf|observesAnyOf(kotlin.collections.Set<kotlin.Any>){}[0] @@ -473,8 +473,8 @@ } sealed interface androidx.compose.runtime/PausableComposition : androidx.compose.runtime/ReusableComposition { // androidx.compose.runtime/PausableComposition|null[0] - abstract fun setPausableContent(kotlin/Function0<kotlin/Unit>): androidx.compose.runtime/PausedComposition // androidx.compose.runtime/PausableComposition.setPausableContent|setPausableContent(kotlin.Function0<kotlin.Unit>){}[0] - abstract fun setPausableContentWithReuse(kotlin/Function0<kotlin/Unit>): androidx.compose.runtime/PausedComposition // androidx.compose.runtime/PausableComposition.setPausableContentWithReuse|setPausableContentWithReuse(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun setPausableContent(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): androidx.compose.runtime/PausedComposition // androidx.compose.runtime/PausableComposition.setPausableContent|setPausableContent(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + abstract fun setPausableContentWithReuse(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): androidx.compose.runtime/PausedComposition // androidx.compose.runtime/PausableComposition.setPausableContentWithReuse|setPausableContentWithReuse(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } sealed interface androidx.compose.runtime/PausedComposition { // androidx.compose.runtime/PausedComposition|null[0] @@ -492,7 +492,7 @@ sealed interface androidx.compose.runtime/ReusableComposition : androidx.compose.runtime/Composition { // androidx.compose.runtime/ReusableComposition|null[0] abstract fun deactivate() // androidx.compose.runtime/ReusableComposition.deactivate|deactivate(){}[0] - abstract fun setContentWithReuse(kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ReusableComposition.setContentWithReuse|setContentWithReuse(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun setContentWithReuse(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.compose.runtime/ReusableComposition.setContentWithReuse|setContentWithReuse(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } abstract class <#A: kotlin/Any?> androidx.compose.runtime/AbstractApplier : androidx.compose.runtime/Applier<#A> { // androidx.compose.runtime/AbstractApplier|null[0] @@ -907,7 +907,7 @@ sealed class <#A: kotlin/Any?> androidx.compose.runtime/CompositionLocal { // androidx.compose.runtime/CompositionLocal|null[0] final val current // androidx.compose.runtime/CompositionLocal.current|{}current[0] - final inline fun <get-current>(): #A // androidx.compose.runtime/CompositionLocal.current.<get-current>|<get-current>(){}[0] + final inline fun <get-current>(androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/CompositionLocal.current.<get-current>|<get-current>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } sealed class androidx.compose.runtime.snapshots/Snapshot { // androidx.compose.runtime.snapshots/Snapshot|null[0] @@ -1005,6 +1005,167 @@ final const val androidx.compose.runtime/reuseKey // androidx.compose.runtime/reuseKey|{}reuseKey[0] final fun <get-reuseKey>(): kotlin/Int // androidx.compose.runtime/reuseKey.<get-reuseKey>|<get-reuseKey>(){}[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ChangeList$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ChangeList$stableprop|#static{}androidx_compose_runtime_changelist_ChangeList$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop|#static{}androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_FixupList$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_FixupList$stableprop|#static{}androidx_compose_runtime_changelist_FixupList$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation$stableprop|#static{}androidx_compose_runtime_changelist_Operation$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop|#static{}androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AppendValue$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AppendValue$stableprop|#static{}androidx_compose_runtime_changelist_Operation_AppendValue$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop|#static{}androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop|#static{}androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop|#static{}androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop|#static{}androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Downs$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Downs$stableprop|#static{}androidx_compose_runtime_changelist_Operation_Downs$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop|#static{}androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop|#static{}androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop|#static{}androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveNode$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveNode$stableprop|#static{}androidx_compose_runtime_changelist_Operation_MoveNode$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop|#static{}androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Remember$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Remember$stableprop|#static{}androidx_compose_runtime_changelist_Operation_Remember$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop|#static{}androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop|#static{}androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop|#static{}androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SideEffect$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SideEffect$stableprop|#static{}androidx_compose_runtime_changelist_Operation_SideEffect$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop|#static{}androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop|#static{}androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TestOperation$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TestOperation$stableprop|#static{}androidx_compose_runtime_changelist_Operation_TestOperation$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop|#static{}androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop|#static{}androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop|#static{}androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop|#static{}androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop|#static{}androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Ups$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Ups$stableprop|#static{}androidx_compose_runtime_changelist_Operation_Ups$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop|#static{}androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operations$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operations$stableprop|#static{}androidx_compose_runtime_changelist_Operations$stableprop[0] +final val androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop|#static{}androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop[0] +final val androidx.compose.runtime.collection/androidx_compose_runtime_collection_MutableVector$stableprop // androidx.compose.runtime.collection/androidx_compose_runtime_collection_MutableVector$stableprop|#static{}androidx_compose_runtime_collection_MutableVector$stableprop[0] +final val androidx.compose.runtime.collection/androidx_compose_runtime_collection_ScatterSetWrapper$stableprop // androidx.compose.runtime.collection/androidx_compose_runtime_collection_ScatterSetWrapper$stableprop|#static{}androidx_compose_runtime_collection_ScatterSetWrapper$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop[0] +final val androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop|#static{}androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicInt$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicInt$stableprop|#static{}androidx_compose_runtime_internal_AtomicInt$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicReference$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicReference$stableprop|#static{}androidx_compose_runtime_internal_AtomicReference$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop|#static{}androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_IntRef$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_IntRef$stableprop|#static{}androidx_compose_runtime_internal_IntRef$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop|#static{}androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop|#static{}androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop|#static{}androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_RememberEventDispatcher$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_RememberEventDispatcher$stableprop|#static{}androidx_compose_runtime_internal_RememberEventDispatcher$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop|#static{}androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_ThreadMap$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_ThreadMap$stableprop|#static{}androidx_compose_runtime_internal_ThreadMap$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_Trace$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_Trace$stableprop|#static{}androidx_compose_runtime_internal_Trace$stableprop[0] +final val androidx.compose.runtime.internal/androidx_compose_runtime_internal_WeakReference$stableprop // androidx.compose.runtime.internal/androidx_compose_runtime_internal_WeakReference$stableprop|#static{}androidx_compose_runtime_internal_WeakReference$stableprop[0] +final val androidx.compose.runtime.platform/androidx_compose_runtime_platform_SynchronizedObject$stableprop // androidx.compose.runtime.platform/androidx_compose_runtime_platform_SynchronizedObject$stableprop|#static{}androidx_compose_runtime_platform_SynchronizedObject$stableprop[0] +final val androidx.compose.runtime.snapshots.tooling/androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop // androidx.compose.runtime.snapshots.tooling/androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop|#static{}androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_MutableSnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_MutableSnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_MutableSnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_Snapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_Snapshot$stableprop|#static{}androidx_compose_runtime_snapshots_Snapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateList$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateList$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotStateList$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop|#static{}androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListIterator$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListIterator$stableprop|#static{}androidx_compose_runtime_snapshots_StateListIterator$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListStateRecord$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListStateRecord$stableprop|#static{}androidx_compose_runtime_snapshots_StateListStateRecord$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateObjectImpl$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateObjectImpl$stableprop|#static{}androidx_compose_runtime_snapshots_StateObjectImpl$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateRecord$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateRecord$stableprop|#static{}androidx_compose_runtime_snapshots_StateRecord$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetIterator$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetIterator$stableprop|#static{}androidx_compose_runtime_snapshots_StateSetIterator$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop|#static{}androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SubList$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SubList$stableprop|#static{}androidx_compose_runtime_snapshots_SubList$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop[0] +final val androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop|#static{}androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop[0] final val androidx.compose.runtime.snapshots/lock // androidx.compose.runtime.snapshots/lock|{}lock[0] final fun <get-lock>(): androidx.compose.runtime.platform/SynchronizedObject // androidx.compose.runtime.snapshots/lock.<get-lock>|<get-lock>(){}[0] final val androidx.compose.runtime.snapshots/snapshotInitializer // androidx.compose.runtime.snapshots/snapshotInitializer|{}snapshotInitializer[0] @@ -1013,20 +1174,88 @@ final fun <get-LocalCompositionErrorContext>(): androidx.compose.runtime/CompositionLocal<androidx.compose.runtime.tooling/CompositionErrorContext?> // androidx.compose.runtime.tooling/LocalCompositionErrorContext.<get-LocalCompositionErrorContext>|<get-LocalCompositionErrorContext>(){}[0] final val androidx.compose.runtime.tooling/LocalInspectionTables // androidx.compose.runtime.tooling/LocalInspectionTables|{}LocalInspectionTables[0] final fun <get-LocalInspectionTables>(): androidx.compose.runtime/ProvidableCompositionLocal<kotlin.collections/MutableSet<androidx.compose.runtime.tooling/CompositionData>?> // androidx.compose.runtime.tooling/LocalInspectionTables.<get-LocalInspectionTables>|<get-LocalInspectionTables>(){}[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop|#static{}androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop|#static{}androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop|#static{}androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop|#static{}androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_LocationSourceInformation$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_LocationSourceInformation$stableprop|#static{}androidx_compose_runtime_tooling_LocationSourceInformation$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ObjectLocation$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ObjectLocation$stableprop|#static{}androidx_compose_runtime_tooling_ObjectLocation$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop|#static{}androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop|#static{}androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_SourceInformation$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_SourceInformation$stableprop|#static{}androidx_compose_runtime_tooling_SourceInformation$stableprop[0] +final val androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop|#static{}androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop[0] final val androidx.compose.runtime/DefaultMonotonicFrameClock // androidx.compose.runtime/DefaultMonotonicFrameClock|{}DefaultMonotonicFrameClock[0] final fun <get-DefaultMonotonicFrameClock>(): androidx.compose.runtime/MonotonicFrameClock // androidx.compose.runtime/DefaultMonotonicFrameClock.<get-DefaultMonotonicFrameClock>|<get-DefaultMonotonicFrameClock>(){}[0] +final val androidx.compose.runtime/androidx_compose_runtime_AbstractApplier$stableprop // androidx.compose.runtime/androidx_compose_runtime_AbstractApplier$stableprop|#static{}androidx_compose_runtime_AbstractApplier$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_Anchor$stableprop // androidx.compose.runtime/androidx_compose_runtime_Anchor$stableprop|#static{}androidx_compose_runtime_Anchor$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_BitVector$stableprop // androidx.compose.runtime/androidx_compose_runtime_BitVector$stableprop|#static{}androidx_compose_runtime_BitVector$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_BroadcastFrameClock$stableprop // androidx.compose.runtime/androidx_compose_runtime_BroadcastFrameClock$stableprop|#static{}androidx_compose_runtime_BroadcastFrameClock$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeError$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeError$stableprop|#static{}androidx_compose_runtime_ComposeRuntimeError$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeFlags$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeFlags$stableprop|#static{}androidx_compose_runtime_ComposeRuntimeFlags$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComposeVersion$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComposeVersion$stableprop|#static{}androidx_compose_runtime_ComposeVersion$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComposerImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComposerImpl$stableprop|#static{}androidx_compose_runtime_ComposerImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop|#static{}androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionContext$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionContext$stableprop|#static{}androidx_compose_runtime_CompositionContext$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionDataImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionDataImpl$stableprop|#static{}androidx_compose_runtime_CompositionDataImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionImpl$stableprop|#static{}androidx_compose_runtime_CompositionImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionLocal$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionLocal$stableprop|#static{}androidx_compose_runtime_CompositionLocal$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionLocalContext$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionLocalContext$stableprop|#static{}androidx_compose_runtime_CompositionLocalContext$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionObserverHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionObserverHolder$stableprop|#static{}androidx_compose_runtime_CompositionObserverHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop // androidx.compose.runtime/androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop|#static{}androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop|#static{}androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ComputedValueHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_ComputedValueHolder$stableprop|#static{}androidx_compose_runtime_ComputedValueHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop // androidx.compose.runtime/androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop|#static{}androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_DisposableEffectScope$stableprop // androidx.compose.runtime/androidx_compose_runtime_DisposableEffectScope$stableprop|#static{}androidx_compose_runtime_DisposableEffectScope$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop // androidx.compose.runtime/androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop|#static{}androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_DynamicValueHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_DynamicValueHolder$stableprop|#static{}androidx_compose_runtime_DynamicValueHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_GroupSourceInformation$stableprop // androidx.compose.runtime/androidx_compose_runtime_GroupSourceInformation$stableprop|#static{}androidx_compose_runtime_GroupSourceInformation$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_IntStack$stableprop // androidx.compose.runtime/androidx_compose_runtime_IntStack$stableprop|#static{}androidx_compose_runtime_IntStack$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_JoinedKey$stableprop // androidx.compose.runtime/androidx_compose_runtime_JoinedKey$stableprop|#static{}androidx_compose_runtime_JoinedKey$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_KeyInfo$stableprop // androidx.compose.runtime/androidx_compose_runtime_KeyInfo$stableprop|#static{}androidx_compose_runtime_KeyInfo$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_Latch$stableprop // androidx.compose.runtime/androidx_compose_runtime_Latch$stableprop|#static{}androidx_compose_runtime_Latch$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_LaunchedEffectImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_LaunchedEffectImpl$stableprop|#static{}androidx_compose_runtime_LaunchedEffectImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_LazyValueHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_LazyValueHolder$stableprop|#static{}androidx_compose_runtime_LazyValueHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_MovableContent$stableprop // androidx.compose.runtime/androidx_compose_runtime_MovableContent$stableprop|#static{}androidx_compose_runtime_MovableContent$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_MovableContentState$stableprop // androidx.compose.runtime/androidx_compose_runtime_MovableContentState$stableprop|#static{}androidx_compose_runtime_MovableContentState$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_MovableContentStateReference$stableprop // androidx.compose.runtime/androidx_compose_runtime_MovableContentStateReference$stableprop|#static{}androidx_compose_runtime_MovableContentStateReference$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_OffsetApplier$stableprop // androidx.compose.runtime/androidx_compose_runtime_OffsetApplier$stableprop|#static{}androidx_compose_runtime_OffsetApplier$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_OpaqueKey$stableprop // androidx.compose.runtime/androidx_compose_runtime_OpaqueKey$stableprop|#static{}androidx_compose_runtime_OpaqueKey$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_PausableMonotonicFrameClock$stableprop // androidx.compose.runtime/androidx_compose_runtime_PausableMonotonicFrameClock$stableprop|#static{}androidx_compose_runtime_PausableMonotonicFrameClock$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_PausedCompositionImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_PausedCompositionImpl$stableprop|#static{}androidx_compose_runtime_PausedCompositionImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ProvidableCompositionLocal$stableprop // androidx.compose.runtime/androidx_compose_runtime_ProvidableCompositionLocal$stableprop|#static{}androidx_compose_runtime_ProvidableCompositionLocal$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ProvidedValue$stableprop // androidx.compose.runtime/androidx_compose_runtime_ProvidedValue$stableprop|#static{}androidx_compose_runtime_ProvidedValue$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_RecomposeScopeImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_RecomposeScopeImpl$stableprop|#static{}androidx_compose_runtime_RecomposeScopeImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_Recomposer$stableprop // androidx.compose.runtime/androidx_compose_runtime_Recomposer$stableprop|#static{}androidx_compose_runtime_Recomposer$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_RecordingApplier$stableprop // androidx.compose.runtime/androidx_compose_runtime_RecordingApplier$stableprop|#static{}androidx_compose_runtime_RecordingApplier$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_RememberObserverHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_RememberObserverHolder$stableprop|#static{}androidx_compose_runtime_RememberObserverHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_RememberedCoroutineScope$stableprop // androidx.compose.runtime/androidx_compose_runtime_RememberedCoroutineScope$stableprop|#static{}androidx_compose_runtime_RememberedCoroutineScope$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_ScopeInvalidated$stableprop // androidx.compose.runtime/androidx_compose_runtime_ScopeInvalidated$stableprop|#static{}androidx_compose_runtime_ScopeInvalidated$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SlotReader$stableprop // androidx.compose.runtime/androidx_compose_runtime_SlotReader$stableprop|#static{}androidx_compose_runtime_SlotReader$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SlotTable$stableprop // androidx.compose.runtime/androidx_compose_runtime_SlotTable$stableprop|#static{}androidx_compose_runtime_SlotTable$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SlotWriter$stableprop // androidx.compose.runtime/androidx_compose_runtime_SlotWriter$stableprop|#static{}androidx_compose_runtime_SlotWriter$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop|#static{}androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop|#static{}androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop|#static{}androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop|#static{}androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableStateImpl$stableprop // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableStateImpl$stableprop|#static{}androidx_compose_runtime_SnapshotMutableStateImpl$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop // androidx.compose.runtime/androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop|#static{}androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_StaticValueHolder$stableprop // androidx.compose.runtime/androidx_compose_runtime_StaticValueHolder$stableprop|#static{}androidx_compose_runtime_StaticValueHolder$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_UnboxedDoubleState$stableprop // androidx.compose.runtime/androidx_compose_runtime_UnboxedDoubleState$stableprop|#static{}androidx_compose_runtime_UnboxedDoubleState$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_UnboxedFloatState$stableprop // androidx.compose.runtime/androidx_compose_runtime_UnboxedFloatState$stableprop|#static{}androidx_compose_runtime_UnboxedFloatState$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_UnboxedIntState$stableprop // androidx.compose.runtime/androidx_compose_runtime_UnboxedIntState$stableprop|#static{}androidx_compose_runtime_UnboxedIntState$stableprop[0] +final val androidx.compose.runtime/androidx_compose_runtime_UnboxedLongState$stableprop // androidx.compose.runtime/androidx_compose_runtime_UnboxedLongState$stableprop|#static{}androidx_compose_runtime_UnboxedLongState$stableprop[0] final val androidx.compose.runtime/compositionLocalMap // androidx.compose.runtime/compositionLocalMap|{}compositionLocalMap[0] final fun <get-compositionLocalMap>(): kotlin/Any // androidx.compose.runtime/compositionLocalMap.<get-compositionLocalMap>|<get-compositionLocalMap>(){}[0] final val androidx.compose.runtime/currentComposer // androidx.compose.runtime/currentComposer|{}currentComposer[0] - final fun <get-currentComposer>(): androidx.compose.runtime/Composer // androidx.compose.runtime/currentComposer.<get-currentComposer>|<get-currentComposer>(){}[0] + final fun <get-currentComposer>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/Composer // androidx.compose.runtime/currentComposer.<get-currentComposer>|<get-currentComposer>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.runtime/currentCompositeKeyHash // androidx.compose.runtime/currentCompositeKeyHash|{}currentCompositeKeyHash[0] - final fun <get-currentCompositeKeyHash>(): kotlin/Int // androidx.compose.runtime/currentCompositeKeyHash.<get-currentCompositeKeyHash>|<get-currentCompositeKeyHash>(){}[0] + final fun <get-currentCompositeKeyHash>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Int // androidx.compose.runtime/currentCompositeKeyHash.<get-currentCompositeKeyHash>|<get-currentCompositeKeyHash>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.runtime/currentCompositeKeyHashCode // androidx.compose.runtime/currentCompositeKeyHashCode|{}currentCompositeKeyHashCode[0] - final fun <get-currentCompositeKeyHashCode>(): kotlin/Long // androidx.compose.runtime/currentCompositeKeyHashCode.<get-currentCompositeKeyHashCode>|<get-currentCompositeKeyHashCode>(){}[0] + final fun <get-currentCompositeKeyHashCode>(androidx.compose.runtime/Composer?, kotlin/Int): kotlin/Long // androidx.compose.runtime/currentCompositeKeyHashCode.<get-currentCompositeKeyHashCode>|<get-currentCompositeKeyHashCode>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.runtime/currentCompositionLocalContext // androidx.compose.runtime/currentCompositionLocalContext|{}currentCompositionLocalContext[0] - final fun <get-currentCompositionLocalContext>(): androidx.compose.runtime/CompositionLocalContext // androidx.compose.runtime/currentCompositionLocalContext.<get-currentCompositionLocalContext>|<get-currentCompositionLocalContext>(){}[0] + final fun <get-currentCompositionLocalContext>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/CompositionLocalContext // androidx.compose.runtime/currentCompositionLocalContext.<get-currentCompositionLocalContext>|<get-currentCompositionLocalContext>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.runtime/currentRecomposeScope // androidx.compose.runtime/currentRecomposeScope|{}currentRecomposeScope[0] - final fun <get-currentRecomposeScope>(): androidx.compose.runtime/RecomposeScope // androidx.compose.runtime/currentRecomposeScope.<get-currentRecomposeScope>|<get-currentRecomposeScope>(){}[0] + final fun <get-currentRecomposeScope>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/RecomposeScope // androidx.compose.runtime/currentRecomposeScope.<get-currentRecomposeScope>|<get-currentRecomposeScope>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final val androidx.compose.runtime/invocation // androidx.compose.runtime/invocation|{}invocation[0] final fun <get-invocation>(): kotlin/Any // androidx.compose.runtime/invocation.<get-invocation>|<get-invocation>(){}[0] final val androidx.compose.runtime/provider // androidx.compose.runtime/provider|{}provider[0] @@ -1046,70 +1275,299 @@ final fun (androidx.compose.runtime/State<kotlin/Long>).androidx.compose.runtime/asLongState(): androidx.compose.runtime/LongState // androidx.compose.runtime/asLongState|asLongState@androidx.compose.runtime.State<kotlin.Long>(){}[0] final fun (kotlin/Long).androidx.compose.runtime.snapshots/toInt(): kotlin/Int // androidx.compose.runtime.snapshots/toInt|toInt@kotlin.Long(){}[0] final fun (kotlin/Long).androidx.compose.runtime.snapshots/toLong(): kotlin/Long // androidx.compose.runtime.snapshots/toLong|toLong@kotlin.Long(){}[0] -final fun <#A: #B, #B: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.compose.runtime/collectAsState(#B, kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#B> // androidx.compose.runtime/collectAsState|collectAsState@kotlinx.coroutines.flow.Flow<0:0>(0:1;kotlin.coroutines.CoroutineContext){0§<0:1>;1§<kotlin.Any?>}[0] +final fun <#A: #B, #B: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.compose.runtime/collectAsState(#B, kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#B> // androidx.compose.runtime/collectAsState|collectAsState@kotlinx.coroutines.flow.Flow<0:0>(0:1;kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<0:1>;1§<kotlin.Any?>}[0] final fun <#A: androidx.compose.runtime.snapshots/StateRecord> (#A).androidx.compose.runtime.snapshots/readable(androidx.compose.runtime.snapshots/StateObject): #A // androidx.compose.runtime.snapshots/readable|readable@0:0(androidx.compose.runtime.snapshots.StateObject){0§<androidx.compose.runtime.snapshots.StateRecord>}[0] final fun <#A: androidx.compose.runtime.snapshots/StateRecord> (#A).androidx.compose.runtime.snapshots/readable(androidx.compose.runtime.snapshots/StateObject, androidx.compose.runtime.snapshots/Snapshot): #A // androidx.compose.runtime.snapshots/readable|readable@0:0(androidx.compose.runtime.snapshots.StateObject;androidx.compose.runtime.snapshots.Snapshot){0§<androidx.compose.runtime.snapshots.StateRecord>}[0] final fun <#A: androidx.compose.runtime.snapshots/StateRecord> (#A).androidx.compose.runtime.snapshots/writableRecord(androidx.compose.runtime.snapshots/StateObject, androidx.compose.runtime.snapshots/Snapshot): #A // androidx.compose.runtime.snapshots/writableRecord|writableRecord@0:0(androidx.compose.runtime.snapshots.StateObject;androidx.compose.runtime.snapshots.Snapshot){0§<androidx.compose.runtime.snapshots.StateRecord>}[0] final fun <#A: androidx.compose.runtime.snapshots/StateRecord> androidx.compose.runtime.snapshots/current(#A): #A // androidx.compose.runtime.snapshots/current|current(0:0){0§<androidx.compose.runtime.snapshots.StateRecord>}[0] final fun <#A: androidx.compose.runtime.snapshots/StateRecord> androidx.compose.runtime.snapshots/current(#A, androidx.compose.runtime.snapshots/Snapshot): #A // androidx.compose.runtime.snapshots/current|current(0:0;androidx.compose.runtime.snapshots.Snapshot){0§<androidx.compose.runtime.snapshots.StateRecord>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?, #D: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function4<#A, #B, #C, #D, kotlin/Unit>): kotlin/Function4<#A, #B, #C, #D, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function4<0:0,0:1,0:2,0:3,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>;3§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?, #D: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function4<#A, #B, #C, #D, kotlin/Unit>): kotlin/Function4<#A, #B, #C, #D, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function4<0:0,0:1,0:2,0:3,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>;3§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function3<#A, #B, #C, kotlin/Unit>): kotlin/Function3<#A, #B, #C, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function3<0:0,0:1,0:2,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function3<#A, #B, #C, kotlin/Unit>): kotlin/Function3<#A, #B, #C, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function3<0:0,0:1,0:2,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?, #D: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function6<#A, #B, #C, #D, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function6<#A, #B, #C, #D, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function6<0:0,0:1,0:2,0:3,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>;3§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?, #D: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function6<#A, #B, #C, #D, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function6<#A, #B, #C, #D, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function6<0:0,0:1,0:2,0:3,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>;3§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function5<#A, #B, #C, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function5<#A, #B, #C, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function5<0:0,0:1,0:2,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?, #C: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function5<#A, #B, #C, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function5<#A, #B, #C, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function5<0:0,0:1,0:2,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>;2§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?, #B: kotlin/Any?> (kotlin.collections/Iterable<kotlin/Pair<#A, #B>>).androidx.compose.runtime/toMutableStateMap(): androidx.compose.runtime.snapshots/SnapshotStateMap<#A, #B> // androidx.compose.runtime/toMutableStateMap|toMutableStateMap@kotlin.collections.Iterable<kotlin.Pair<0:0,0:1>>(){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function2<#A, #B, kotlin/Unit>): kotlin/Function2<#A, #B, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function2<0:0,0:1,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function2<#A, #B, kotlin/Unit>): kotlin/Function2<#A, #B, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function2<0:0,0:1,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function4<#A, #B, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function4<#A, #B, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function4<0:0,0:1,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function4<#A, #B, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function4<#A, #B, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function4<0:0,0:1,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/mutableStateMapOf(): androidx.compose.runtime.snapshots/SnapshotStateMap<#A, #B> // androidx.compose.runtime/mutableStateMapOf|mutableStateMapOf(){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?, #B: kotlin/Any?> androidx.compose.runtime/mutableStateMapOf(kotlin/Array<out kotlin/Pair<#A, #B>>...): androidx.compose.runtime.snapshots/SnapshotStateMap<#A, #B> // androidx.compose.runtime/mutableStateMapOf|mutableStateMapOf(kotlin.Array<out|kotlin.Pair<0:0,0:1>>...){0§<kotlin.Any?>;1§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> (kotlin.collections/Collection<#A>).androidx.compose.runtime/toMutableStateList(): androidx.compose.runtime.snapshots/SnapshotStateList<#A> // androidx.compose.runtime/toMutableStateList|toMutableStateList@kotlin.collections.Collection<0:0>(){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.compose.runtime/collectAsState(kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#A> // androidx.compose.runtime/collectAsState|collectAsState@kotlinx.coroutines.flow.StateFlow<0:0>(kotlin.coroutines.CoroutineContext){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.compose.runtime/collectAsState(kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/collectAsState|collectAsState@kotlinx.coroutines.flow.StateFlow<0:0>(kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime.snapshots/SnapshotStateList(kotlin/Int, kotlin/Function1<kotlin/Int, #A>): androidx.compose.runtime.snapshots/SnapshotStateList<#A> // androidx.compose.runtime.snapshots/SnapshotStateList|SnapshotStateList(kotlin.Int;kotlin.Function1<kotlin.Int,0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/compositionLocalOf(androidx.compose.runtime/SnapshotMutationPolicy<#A> = ..., kotlin/Function0<#A>): androidx.compose.runtime/ProvidableCompositionLocal<#A> // androidx.compose.runtime/compositionLocalOf|compositionLocalOf(androidx.compose.runtime.SnapshotMutationPolicy<0:0>;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/compositionLocalWithComputedDefaultOf(kotlin/Function1<androidx.compose.runtime/CompositionLocalAccessorScope, #A>): androidx.compose.runtime/ProvidableCompositionLocal<#A> // androidx.compose.runtime/compositionLocalWithComputedDefaultOf|compositionLocalWithComputedDefaultOf(kotlin.Function1<androidx.compose.runtime.CompositionLocalAccessorScope,0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/derivedStateOf(androidx.compose.runtime/SnapshotMutationPolicy<#A>, kotlin/Function0<#A>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/derivedStateOf|derivedStateOf(androidx.compose.runtime.SnapshotMutationPolicy<0:0>;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/derivedStateOf(kotlin/Function0<#A>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/derivedStateOf|derivedStateOf(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function1<#A, kotlin/Unit>): kotlin/Function1<#A, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function1<#A, kotlin/Unit>): kotlin/Function1<#A, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/movableContentOf(kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/movableContentWithReceiverOf(kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentWithReceiverOf|movableContentWithReceiverOf(kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/mutableStateListOf(): androidx.compose.runtime.snapshots/SnapshotStateList<#A> // androidx.compose.runtime/mutableStateListOf|mutableStateListOf(){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/mutableStateListOf(kotlin/Array<out #A>...): androidx.compose.runtime.snapshots/SnapshotStateList<#A> // androidx.compose.runtime/mutableStateListOf|mutableStateListOf(kotlin.Array<out|0:0>...){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/mutableStateOf(#A, androidx.compose.runtime/SnapshotMutationPolicy<#A> = ...): androidx.compose.runtime/MutableState<#A> // androidx.compose.runtime/mutableStateOf|mutableStateOf(0:0;androidx.compose.runtime.SnapshotMutationPolicy<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/mutableStateSetOf(): androidx.compose.runtime.snapshots/SnapshotStateSet<#A> // androidx.compose.runtime/mutableStateSetOf|mutableStateSetOf(){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/mutableStateSetOf(kotlin/Array<out #A>...): androidx.compose.runtime.snapshots/SnapshotStateSet<#A> // androidx.compose.runtime/mutableStateSetOf|mutableStateSetOf(kotlin.Array<out|0:0>...){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/neverEqualPolicy(): androidx.compose.runtime/SnapshotMutationPolicy<#A> // androidx.compose.runtime/neverEqualPolicy|neverEqualPolicy(){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Array<out kotlin/Any?>..., kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Array<out|kotlin.Any?>...;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/produceState(#A, kotlin/Array<out kotlin/Any?>..., kotlin.coroutines/SuspendFunction1<androidx.compose.runtime/ProduceStateScope<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/produceState|produceState(0:0;kotlin.Array<out|kotlin.Any?>...;kotlin.coroutines.SuspendFunction1<androidx.compose.runtime.ProduceStateScope<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/referentialEqualityPolicy(): androidx.compose.runtime/SnapshotMutationPolicy<#A> // androidx.compose.runtime/referentialEqualityPolicy|referentialEqualityPolicy(){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> androidx.compose.runtime/rememberUpdatedState(#A): androidx.compose.runtime/State<#A> // androidx.compose.runtime/rememberUpdatedState|rememberUpdatedState(0:0){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> androidx.compose.runtime/rememberUpdatedState(#A, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.compose.runtime/rememberUpdatedState|rememberUpdatedState(0:0;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/snapshotFlow(kotlin/Function0<#A>): kotlinx.coroutines.flow/Flow<#A> // androidx.compose.runtime/snapshotFlow|snapshotFlow(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/staticCompositionLocalOf(kotlin/Function0<#A>): androidx.compose.runtime/ProvidableCompositionLocal<#A> // androidx.compose.runtime/staticCompositionLocalOf|staticCompositionLocalOf(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.runtime/structuralEqualityPolicy(): androidx.compose.runtime/SnapshotMutationPolicy<#A> // androidx.compose.runtime/structuralEqualityPolicy|structuralEqualityPolicy(){0§<kotlin.Any?>}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ChangeList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ChangeList$stableprop_getter|androidx_compose_runtime_changelist_ChangeList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop_getter|androidx_compose_runtime_changelist_ComposerChangeListWriter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_FixupList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_FixupList$stableprop_getter|androidx_compose_runtime_changelist_FixupList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation$stableprop_getter|androidx_compose_runtime_changelist_Operation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop_getter|androidx_compose_runtime_changelist_Operation_AdvanceSlotsBy$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AppendValue$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_AppendValue$stableprop_getter|androidx_compose_runtime_changelist_Operation_AppendValue$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop_getter|androidx_compose_runtime_changelist_Operation_ApplyChangeList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop_getter|androidx_compose_runtime_changelist_Operation_CopyNodesToNewAnchorLocation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop_getter|androidx_compose_runtime_changelist_Operation_CopySlotTableToAnchorLocation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop_getter|androidx_compose_runtime_changelist_Operation_DeactivateCurrentGroup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop_getter|androidx_compose_runtime_changelist_Operation_DetermineMovableContentNodeIndex$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Downs$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Downs$stableprop_getter|androidx_compose_runtime_changelist_Operation_Downs$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop_getter|androidx_compose_runtime_changelist_Operation_EndCompositionScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop_getter|androidx_compose_runtime_changelist_Operation_EndCurrentGroup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop_getter|androidx_compose_runtime_changelist_Operation_EndMovableContentPlacement$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop_getter|androidx_compose_runtime_changelist_Operation_EndResumingScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop_getter|androidx_compose_runtime_changelist_Operation_EnsureGroupStarted$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop_getter|androidx_compose_runtime_changelist_Operation_EnsureRootGroupStarted$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop_getter|androidx_compose_runtime_changelist_Operation_InsertNodeFixup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop_getter|androidx_compose_runtime_changelist_Operation_InsertSlots$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop_getter|androidx_compose_runtime_changelist_Operation_InsertSlotsWithFixups$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop_getter|androidx_compose_runtime_changelist_Operation_MoveCurrentGroup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_MoveNode$stableprop_getter|androidx_compose_runtime_changelist_Operation_MoveNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop_getter|androidx_compose_runtime_changelist_Operation_PostInsertNodeFixup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop_getter|androidx_compose_runtime_changelist_Operation_ReleaseMovableGroupAtCurrent$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Remember$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Remember$stableprop_getter|androidx_compose_runtime_changelist_Operation_Remember$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop_getter|androidx_compose_runtime_changelist_Operation_RememberPausingScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop_getter|androidx_compose_runtime_changelist_Operation_RemoveCurrentGroup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop_getter|androidx_compose_runtime_changelist_Operation_RemoveNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop_getter|androidx_compose_runtime_changelist_Operation_ResetSlots$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SideEffect$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SideEffect$stableprop_getter|androidx_compose_runtime_changelist_Operation_SideEffect$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop_getter|androidx_compose_runtime_changelist_Operation_SkipToEndOfCurrentGroup$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop_getter|androidx_compose_runtime_changelist_Operation_StartResumingScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TestOperation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TestOperation$stableprop_getter|androidx_compose_runtime_changelist_Operation_TestOperation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop_getter|androidx_compose_runtime_changelist_Operation_TrimParentValues$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop_getter|androidx_compose_runtime_changelist_Operation_UpdateAnchoredValue$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop_getter|androidx_compose_runtime_changelist_Operation_UpdateAuxData$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop_getter|androidx_compose_runtime_changelist_Operation_UpdateNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop_getter|androidx_compose_runtime_changelist_Operation_UpdateValue$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Ups$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_Ups$stableprop_getter|androidx_compose_runtime_changelist_Operation_Ups$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop_getter|androidx_compose_runtime_changelist_Operation_UseCurrentNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operations$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_Operations$stableprop_getter|androidx_compose_runtime_changelist_Operations$stableprop_getter(){}[0] +final fun androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop_getter(): kotlin/Int // androidx.compose.runtime.changelist/androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop_getter|androidx_compose_runtime_changelist_OperationsDebugStringFormattable$stableprop_getter(){}[0] +final fun androidx.compose.runtime.collection/androidx_compose_runtime_collection_MutableVector$stableprop_getter(): kotlin/Int // androidx.compose.runtime.collection/androidx_compose_runtime_collection_MutableVector$stableprop_getter|androidx_compose_runtime_collection_MutableVector$stableprop_getter(){}[0] +final fun androidx.compose.runtime.collection/androidx_compose_runtime_collection_ScatterSetWrapper$stableprop_getter(): kotlin/Int // androidx.compose.runtime.collection/androidx_compose_runtime_collection_ScatterSetWrapper$stableprop_getter|androidx_compose_runtime_collection_ScatterSetWrapper$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableCollectionAdapter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableListAdapter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableMapAdapter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.adapters/androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_adapters_ImmutableSetAdapter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractListIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_AbstractPersistentList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_BufferIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_ObjectRef$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVector$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_PersistentVectorMutableIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SingleElementListIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_SmallPersistentVector$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableList_TrieIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_AbstractMapBuilderEntries$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_MapEntry$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBaseIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderBaseIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntries$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeys$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderKeysIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValues$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapBuilderValuesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntries$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeys$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapKeysIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValues$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_PersistentHashMapValuesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeBaseIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeKeysIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeMutableEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNodeValuesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableMap_TrieNode_ModificationResult$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSet$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_PersistentHashSetMutableIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNode$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_immutableSet_TrieNodeIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_LinkedValue$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntries$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeys$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderKeysIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderLinksIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValues$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapBuilderValuesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntries$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapEntriesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeys$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapKeysIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapLinksIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValues$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedMap_PersistentOrderedMapValuesIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_Links$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSet$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet/androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_implementations_persistentOrderedSet_PersistentOrderedSetMutableIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_internal_DeltaCounter$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_internal_EndOfChain$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_internal_ListImplementation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop_getter(): kotlin/Int // androidx.compose.runtime.external.kotlinx.collections.immutable.internal/androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop_getter|androidx_compose_runtime_external_kotlinx_collections_immutable_internal_MutabilityOwnership$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicInt$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicInt$stableprop_getter|androidx_compose_runtime_internal_AtomicInt$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_AtomicReference$stableprop_getter|androidx_compose_runtime_internal_AtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop_getter|androidx_compose_runtime_internal_ComposableLambdaImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_IntRef$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_IntRef$stableprop_getter|androidx_compose_runtime_internal_IntRef$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop_getter|androidx_compose_runtime_internal_PausedCompositionRemembers$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop_getter|androidx_compose_runtime_internal_PersistentCompositionLocalHashMap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop_getter|androidx_compose_runtime_internal_PersistentCompositionLocalHashMap_Builder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_runtime_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_RememberEventDispatcher$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_RememberEventDispatcher$stableprop_getter|androidx_compose_runtime_internal_RememberEventDispatcher$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop_getter|androidx_compose_runtime_internal_SnapshotThreadLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_ThreadMap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_ThreadMap$stableprop_getter|androidx_compose_runtime_internal_ThreadMap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_Trace$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_Trace$stableprop_getter|androidx_compose_runtime_internal_Trace$stableprop_getter(){}[0] +final fun androidx.compose.runtime.internal/androidx_compose_runtime_internal_WeakReference$stableprop_getter(): kotlin/Int // androidx.compose.runtime.internal/androidx_compose_runtime_internal_WeakReference$stableprop_getter|androidx_compose_runtime_internal_WeakReference$stableprop_getter(){}[0] final fun androidx.compose.runtime.internal/composableLambda(androidx.compose.runtime/Composer, kotlin/Int, kotlin/Boolean, kotlin/Any): androidx.compose.runtime.internal/ComposableLambda // androidx.compose.runtime.internal/composableLambda|composableLambda(androidx.compose.runtime.Composer;kotlin.Int;kotlin.Boolean;kotlin.Any){}[0] final fun androidx.compose.runtime.internal/composableLambdaInstance(kotlin/Int, kotlin/Boolean, kotlin/Any): androidx.compose.runtime.internal/ComposableLambda // androidx.compose.runtime.internal/composableLambdaInstance|composableLambdaInstance(kotlin.Int;kotlin.Boolean;kotlin.Any){}[0] final fun androidx.compose.runtime.internal/illegalDecoyCallException(kotlin/String): kotlin/Nothing // androidx.compose.runtime.internal/illegalDecoyCallException|illegalDecoyCallException(kotlin.String){}[0] -final fun androidx.compose.runtime.internal/rememberComposableLambda(kotlin/Int, kotlin/Boolean, kotlin/Any): androidx.compose.runtime.internal/ComposableLambda // androidx.compose.runtime.internal/rememberComposableLambda|rememberComposableLambda(kotlin.Int;kotlin.Boolean;kotlin.Any){}[0] +final fun androidx.compose.runtime.internal/rememberComposableLambda(kotlin/Int, kotlin/Boolean, kotlin/Any, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime.internal/ComposableLambda // androidx.compose.runtime.internal/rememberComposableLambda|rememberComposableLambda(kotlin.Int;kotlin.Boolean;kotlin.Any;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime.platform/androidx_compose_runtime_platform_SynchronizedObject$stableprop_getter(): kotlin/Int // androidx.compose.runtime.platform/androidx_compose_runtime_platform_SynchronizedObject$stableprop_getter|androidx_compose_runtime_platform_SynchronizedObject$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots.tooling/androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots.tooling/androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop_getter|androidx_compose_runtime_snapshots_tooling_SnapshotInstanceObservers$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop_getter|androidx_compose_runtime_snapshots_GlobalSnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_MutableSnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_MutableSnapshot$stableprop_getter|androidx_compose_runtime_snapshots_MutableSnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop_getter|androidx_compose_runtime_snapshots_NestedMutableSnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop_getter|androidx_compose_runtime_snapshots_NestedReadonlySnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop_getter|androidx_compose_runtime_snapshots_ReadonlySnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_Snapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_Snapshot$stableprop_getter|androidx_compose_runtime_snapshots_Snapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotApplyConflictException$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotApplyResult$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotApplyResult_Failure$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotApplyResult_Success$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotContextElementImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotDoubleIndexHeap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotIdArrayBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotIdSet$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateList$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotStateList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotStateMap$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotStateMap_StateMapStateRecord$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotStateObserver$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotStateSet$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop_getter|androidx_compose_runtime_snapshots_SnapshotWeakSet$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListIterator$stableprop_getter|androidx_compose_runtime_snapshots_StateListIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListStateRecord$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateListStateRecord$stableprop_getter|androidx_compose_runtime_snapshots_StateListStateRecord$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateObjectImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateObjectImpl$stableprop_getter|androidx_compose_runtime_snapshots_StateObjectImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateRecord$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateRecord$stableprop_getter|androidx_compose_runtime_snapshots_StateRecord$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetIterator$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetIterator$stableprop_getter|androidx_compose_runtime_snapshots_StateSetIterator$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop_getter|androidx_compose_runtime_snapshots_StateSetStateRecord$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SubList$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_SubList$stableprop_getter|androidx_compose_runtime_snapshots_SubList$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop_getter|androidx_compose_runtime_snapshots_TransparentObserverMutableSnapshot$stableprop_getter(){}[0] +final fun androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop_getter(): kotlin/Int // androidx.compose.runtime.snapshots/androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop_getter|androidx_compose_runtime_snapshots_TransparentObserverSnapshot$stableprop_getter(){}[0] final fun androidx.compose.runtime.snapshots/notifyWrite(androidx.compose.runtime.snapshots/Snapshot, androidx.compose.runtime.snapshots/StateObject) // androidx.compose.runtime.snapshots/notifyWrite|notifyWrite(androidx.compose.runtime.snapshots.Snapshot;androidx.compose.runtime.snapshots.StateObject){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop_getter|androidx_compose_runtime_tooling_ComposeStackTraceBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop_getter|androidx_compose_runtime_tooling_ComposeStackTraceFrame$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop_getter|androidx_compose_runtime_tooling_CompositionErrorContextImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop_getter|androidx_compose_runtime_tooling_DiagnosticComposeException$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_LocationSourceInformation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_LocationSourceInformation$stableprop_getter|androidx_compose_runtime_tooling_LocationSourceInformation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ObjectLocation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ObjectLocation$stableprop_getter|androidx_compose_runtime_tooling_ObjectLocation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop_getter|androidx_compose_runtime_tooling_ParameterSourceInformation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop_getter|androidx_compose_runtime_tooling_ReaderTraceBuilder$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_SourceInformation$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_SourceInformation$stableprop_getter|androidx_compose_runtime_tooling_SourceInformation$stableprop_getter(){}[0] +final fun androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop_getter(): kotlin/Int // androidx.compose.runtime.tooling/androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop_getter|androidx_compose_runtime_tooling_WriterTraceBuilder$stableprop_getter(){}[0] final fun androidx.compose.runtime.tooling/parseSourceInformation(kotlin/String): androidx.compose.runtime.tooling/SourceInformation? // androidx.compose.runtime.tooling/parseSourceInformation|parseSourceInformation(kotlin.String){}[0] final fun androidx.compose.runtime/Composition(androidx.compose.runtime/Applier<*>, androidx.compose.runtime/CompositionContext): androidx.compose.runtime/Composition // androidx.compose.runtime/Composition|Composition(androidx.compose.runtime.Applier<*>;androidx.compose.runtime.CompositionContext){}[0] -final fun androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/CompositionLocalContext, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(androidx.compose.runtime.CompositionLocalContext;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/ProvidedValue<*>, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(androidx.compose.runtime.ProvidedValue<*>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.runtime/CompositionLocalProvider(kotlin/Array<out androidx.compose.runtime/ProvidedValue<*>>..., kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(kotlin.Array<out|androidx.compose.runtime.ProvidedValue<*>>...;kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/CompositionLocalContext, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(androidx.compose.runtime.CompositionLocalContext;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/CompositionLocalProvider(androidx.compose.runtime/ProvidedValue<*>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(androidx.compose.runtime.ProvidedValue<*>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/CompositionLocalProvider(kotlin/Array<out androidx.compose.runtime/ProvidedValue<*>>..., kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/CompositionLocalProvider|CompositionLocalProvider(kotlin.Array<out|androidx.compose.runtime.ProvidedValue<*>>...;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.runtime/ControlledComposition(androidx.compose.runtime/Applier<*>, androidx.compose.runtime/CompositionContext): androidx.compose.runtime/ControlledComposition // androidx.compose.runtime/ControlledComposition|ControlledComposition(androidx.compose.runtime.Applier<*>;androidx.compose.runtime.CompositionContext){}[0] -final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>){}[0] -final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>){}[0] -final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>){}[0] -final fun androidx.compose.runtime/DisposableEffect(kotlin/Array<out kotlin/Any?>..., kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Array<out|kotlin.Any?>...;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>){}[0] -final fun androidx.compose.runtime/DisposableEffect(kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>){}[0] -final fun androidx.compose.runtime/LaunchedEffect(kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>){}[0] -final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>){}[0] -final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>){}[0] -final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>){}[0] -final fun androidx.compose.runtime/LaunchedEffect(kotlin/Array<out kotlin/Any?>..., kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Array<out|kotlin.Any?>...;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>){}[0] +final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/DisposableEffect(kotlin/Any?, kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Any?;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/DisposableEffect(kotlin/Array<out kotlin/Any?>..., kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Array<out|kotlin.Any?>...;kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/DisposableEffect(kotlin/Function1<androidx.compose.runtime/DisposableEffectScope, androidx.compose.runtime/DisposableEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/DisposableEffect|DisposableEffect(kotlin.Function1<androidx.compose.runtime.DisposableEffectScope,androidx.compose.runtime.DisposableEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/LaunchedEffect(kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/LaunchedEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/LaunchedEffect(kotlin/Array<out kotlin/Any?>..., kotlin.coroutines/SuspendFunction1<kotlinx.coroutines/CoroutineScope, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/LaunchedEffect|LaunchedEffect(kotlin.Array<out|kotlin.Any?>...;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.CoroutineScope,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.runtime/PausableComposition(androidx.compose.runtime/Applier<*>, androidx.compose.runtime/CompositionContext): androidx.compose.runtime/PausableComposition // androidx.compose.runtime/PausableComposition|PausableComposition(androidx.compose.runtime.Applier<*>;androidx.compose.runtime.CompositionContext){}[0] final fun androidx.compose.runtime/ReusableComposition(androidx.compose.runtime/Applier<*>, androidx.compose.runtime/CompositionContext): androidx.compose.runtime/ReusableComposition // androidx.compose.runtime/ReusableComposition|ReusableComposition(androidx.compose.runtime.Applier<*>;androidx.compose.runtime.CompositionContext){}[0] -final fun androidx.compose.runtime/SideEffect(kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/SideEffect|SideEffect(kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.runtime/SideEffect(kotlin/Function0<kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/SideEffect|SideEffect(kotlin.Function0<kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_AbstractApplier$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_AbstractApplier$stableprop_getter|androidx_compose_runtime_AbstractApplier$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_Anchor$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_Anchor$stableprop_getter|androidx_compose_runtime_Anchor$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_BitVector$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_BitVector$stableprop_getter|androidx_compose_runtime_BitVector$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_BroadcastFrameClock$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_BroadcastFrameClock$stableprop_getter|androidx_compose_runtime_BroadcastFrameClock$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeError$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeError$stableprop_getter|androidx_compose_runtime_ComposeRuntimeError$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeFlags$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComposeRuntimeFlags$stableprop_getter|androidx_compose_runtime_ComposeRuntimeFlags$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComposeVersion$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComposeVersion$stableprop_getter|androidx_compose_runtime_ComposeVersion$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComposerImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComposerImpl$stableprop_getter|androidx_compose_runtime_ComposerImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop_getter|androidx_compose_runtime_ComposerImpl_CompositionContextHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionContext$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionContext$stableprop_getter|androidx_compose_runtime_CompositionContext$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionDataImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionDataImpl$stableprop_getter|androidx_compose_runtime_CompositionDataImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionImpl$stableprop_getter|androidx_compose_runtime_CompositionImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionLocal$stableprop_getter|androidx_compose_runtime_CompositionLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionLocalContext$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionLocalContext$stableprop_getter|androidx_compose_runtime_CompositionLocalContext$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionObserverHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionObserverHolder$stableprop_getter|androidx_compose_runtime_CompositionObserverHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop_getter|androidx_compose_runtime_CompositionScopedCoroutineScopeCanceller$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop_getter|androidx_compose_runtime_ComputedProvidableCompositionLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ComputedValueHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ComputedValueHolder$stableprop_getter|androidx_compose_runtime_ComputedValueHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop_getter|androidx_compose_runtime_DerivedSnapshotState_ResultRecord$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_DisposableEffectScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_DisposableEffectScope$stableprop_getter|androidx_compose_runtime_DisposableEffectScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop_getter|androidx_compose_runtime_DynamicProvidableCompositionLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_DynamicValueHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_DynamicValueHolder$stableprop_getter|androidx_compose_runtime_DynamicValueHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_GroupSourceInformation$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_GroupSourceInformation$stableprop_getter|androidx_compose_runtime_GroupSourceInformation$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_IntStack$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_IntStack$stableprop_getter|androidx_compose_runtime_IntStack$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_JoinedKey$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_JoinedKey$stableprop_getter|androidx_compose_runtime_JoinedKey$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_KeyInfo$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_KeyInfo$stableprop_getter|androidx_compose_runtime_KeyInfo$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_Latch$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_Latch$stableprop_getter|androidx_compose_runtime_Latch$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_LaunchedEffectImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_LaunchedEffectImpl$stableprop_getter|androidx_compose_runtime_LaunchedEffectImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_LazyValueHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_LazyValueHolder$stableprop_getter|androidx_compose_runtime_LazyValueHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_MovableContent$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_MovableContent$stableprop_getter|androidx_compose_runtime_MovableContent$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_MovableContentState$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_MovableContentState$stableprop_getter|androidx_compose_runtime_MovableContentState$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_MovableContentStateReference$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_MovableContentStateReference$stableprop_getter|androidx_compose_runtime_MovableContentStateReference$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_OffsetApplier$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_OffsetApplier$stableprop_getter|androidx_compose_runtime_OffsetApplier$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_OpaqueKey$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_OpaqueKey$stableprop_getter|androidx_compose_runtime_OpaqueKey$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_PausableMonotonicFrameClock$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_PausableMonotonicFrameClock$stableprop_getter|androidx_compose_runtime_PausableMonotonicFrameClock$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_PausedCompositionImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_PausedCompositionImpl$stableprop_getter|androidx_compose_runtime_PausedCompositionImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ProvidableCompositionLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ProvidableCompositionLocal$stableprop_getter|androidx_compose_runtime_ProvidableCompositionLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ProvidedValue$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ProvidedValue$stableprop_getter|androidx_compose_runtime_ProvidedValue$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_RecomposeScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_RecomposeScopeImpl$stableprop_getter|androidx_compose_runtime_RecomposeScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_Recomposer$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_Recomposer$stableprop_getter|androidx_compose_runtime_Recomposer$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_RecordingApplier$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_RecordingApplier$stableprop_getter|androidx_compose_runtime_RecordingApplier$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_RememberObserverHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_RememberObserverHolder$stableprop_getter|androidx_compose_runtime_RememberObserverHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_RememberedCoroutineScope$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_RememberedCoroutineScope$stableprop_getter|androidx_compose_runtime_RememberedCoroutineScope$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_ScopeInvalidated$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_ScopeInvalidated$stableprop_getter|androidx_compose_runtime_ScopeInvalidated$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SlotReader$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SlotReader$stableprop_getter|androidx_compose_runtime_SlotReader$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SlotTable$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SlotTable$stableprop_getter|androidx_compose_runtime_SlotTable$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SlotWriter$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SlotWriter$stableprop_getter|androidx_compose_runtime_SlotWriter$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop_getter|androidx_compose_runtime_SnapshotMutableDoubleStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop_getter|androidx_compose_runtime_SnapshotMutableFloatStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop_getter|androidx_compose_runtime_SnapshotMutableIntStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop_getter|androidx_compose_runtime_SnapshotMutableLongStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableStateImpl$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_SnapshotMutableStateImpl$stableprop_getter|androidx_compose_runtime_SnapshotMutableStateImpl$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop_getter|androidx_compose_runtime_StaticProvidableCompositionLocal$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_StaticValueHolder$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_StaticValueHolder$stableprop_getter|androidx_compose_runtime_StaticValueHolder$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_UnboxedDoubleState$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_UnboxedDoubleState$stableprop_getter|androidx_compose_runtime_UnboxedDoubleState$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_UnboxedFloatState$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_UnboxedFloatState$stableprop_getter|androidx_compose_runtime_UnboxedFloatState$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_UnboxedIntState$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_UnboxedIntState$stableprop_getter|androidx_compose_runtime_UnboxedIntState$stableprop_getter(){}[0] +final fun androidx.compose.runtime/androidx_compose_runtime_UnboxedLongState$stableprop_getter(): kotlin/Int // androidx.compose.runtime/androidx_compose_runtime_UnboxedLongState$stableprop_getter|androidx_compose_runtime_UnboxedLongState$stableprop_getter(){}[0] final fun androidx.compose.runtime/clearCompositionErrors() // androidx.compose.runtime/clearCompositionErrors|clearCompositionErrors(){}[0] final fun androidx.compose.runtime/createCompositionCoroutineScope(kotlin.coroutines/CoroutineContext, androidx.compose.runtime/Composer): kotlinx.coroutines/CoroutineScope // androidx.compose.runtime/createCompositionCoroutineScope|createCompositionCoroutineScope(kotlin.coroutines.CoroutineContext;androidx.compose.runtime.Composer){}[0] final fun androidx.compose.runtime/currentCompositionErrors(): kotlin.collections/List<kotlin/Pair<kotlin/Exception, kotlin/Boolean>> // androidx.compose.runtime/currentCompositionErrors|currentCompositionErrors(){}[0] @@ -1118,12 +1576,12 @@ final fun androidx.compose.runtime/invalidApplier() // androidx.compose.runtime/invalidApplier|invalidApplier(){}[0] final fun androidx.compose.runtime/invalidateGroupsWithKey(kotlin/Int) // androidx.compose.runtime/invalidateGroupsWithKey|invalidateGroupsWithKey(kotlin.Int){}[0] final fun androidx.compose.runtime/isTraceInProgress(): kotlin/Boolean // androidx.compose.runtime/isTraceInProgress|isTraceInProgress(){}[0] -final fun androidx.compose.runtime/movableContentOf(kotlin/Function0<kotlin/Unit>): kotlin/Function0<kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.runtime/movableContentOf(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.runtime/movableContentOf|movableContentOf(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final fun androidx.compose.runtime/mutableDoubleStateOf(kotlin/Double): androidx.compose.runtime/MutableDoubleState // androidx.compose.runtime/mutableDoubleStateOf|mutableDoubleStateOf(kotlin.Double){}[0] final fun androidx.compose.runtime/mutableFloatStateOf(kotlin/Float): androidx.compose.runtime/MutableFloatState // androidx.compose.runtime/mutableFloatStateOf|mutableFloatStateOf(kotlin.Float){}[0] final fun androidx.compose.runtime/mutableIntStateOf(kotlin/Int): androidx.compose.runtime/MutableIntState // androidx.compose.runtime/mutableIntStateOf|mutableIntStateOf(kotlin.Int){}[0] final fun androidx.compose.runtime/mutableLongStateOf(kotlin/Long): androidx.compose.runtime/MutableLongState // androidx.compose.runtime/mutableLongStateOf|mutableLongStateOf(kotlin.Long){}[0] -final fun androidx.compose.runtime/rememberCompositionContext(): androidx.compose.runtime/CompositionContext // androidx.compose.runtime/rememberCompositionContext|rememberCompositionContext(){}[0] +final fun androidx.compose.runtime/rememberCompositionContext(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/CompositionContext // androidx.compose.runtime/rememberCompositionContext|rememberCompositionContext(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun androidx.compose.runtime/simulateHotReload(kotlin/Any) // androidx.compose.runtime/simulateHotReload|simulateHotReload(kotlin.Any){}[0] final fun androidx.compose.runtime/sourceInformation(androidx.compose.runtime/Composer, kotlin/String) // androidx.compose.runtime/sourceInformation|sourceInformation(androidx.compose.runtime.Composer;kotlin.String){}[0] final fun androidx.compose.runtime/sourceInformationMarkerEnd(androidx.compose.runtime/Composer) // androidx.compose.runtime/sourceInformationMarkerEnd|sourceInformationMarkerEnd(androidx.compose.runtime.Composer){}[0] @@ -1145,30 +1603,30 @@ final inline fun <#A: androidx.compose.runtime.snapshots/StateRecord, #B: kotlin/Any?> (#A).androidx.compose.runtime.snapshots/withCurrent(kotlin/Function1<#A, #B>): #B // androidx.compose.runtime.snapshots/withCurrent|withCurrent@0:0(kotlin.Function1<0:0,0:1>){0§<androidx.compose.runtime.snapshots.StateRecord>;1§<kotlin.Any?>}[0] final inline fun <#A: androidx.compose.runtime.snapshots/StateRecord, #B: kotlin/Any?> (#A).androidx.compose.runtime.snapshots/writable(androidx.compose.runtime.snapshots/StateObject, androidx.compose.runtime.snapshots/Snapshot, kotlin/Function1<#A, #B>): #B // androidx.compose.runtime.snapshots/writable|writable@0:0(androidx.compose.runtime.snapshots.StateObject;androidx.compose.runtime.snapshots.Snapshot;kotlin.Function1<0:0,0:1>){0§<androidx.compose.runtime.snapshots.StateRecord>;1§<kotlin.Any?>}[0] final inline fun <#A: androidx.compose.runtime.snapshots/StateRecord, #B: kotlin/Any?> (#A).androidx.compose.runtime.snapshots/writable(androidx.compose.runtime.snapshots/StateObject, kotlin/Function1<#A, #B>): #B // androidx.compose.runtime.snapshots/writable|writable@0:0(androidx.compose.runtime.snapshots.StateObject;kotlin.Function1<0:0,0:1>){0§<androidx.compose.runtime.snapshots.StateRecord>;1§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>){0§<kotlin.Any>;1§<androidx.compose.runtime.Applier<*>>}[0] -final inline fun <#A: kotlin/Any, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>){0§<kotlin.Any>;1§<androidx.compose.runtime.Applier<*>>}[0] -final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] -final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, noinline kotlin/Function1<androidx.compose.runtime/SkippableUpdater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function1<androidx.compose.runtime.SkippableUpdater<0:0>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] -final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] -final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, noinline kotlin/Function1<androidx.compose.runtime/SkippableUpdater<#A>, kotlin/Unit>, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function1<androidx.compose.runtime.SkippableUpdater<0:0>,kotlin.Unit>;kotlin.Function0<kotlin.Unit>){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, noinline kotlin/Function3<androidx.compose.runtime/SkippableUpdater<#A>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ComposeNode|ComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function3<androidx.compose.runtime.SkippableUpdater<0:0>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] +final inline fun <#A: kotlin/Any?, #B: reified androidx.compose.runtime/Applier<*>> androidx.compose.runtime/ReusableComposeNode(noinline kotlin/Function0<#A>, kotlin/Function1<androidx.compose.runtime/Updater<#A>, kotlin/Unit>, noinline kotlin/Function3<androidx.compose.runtime/SkippableUpdater<#A>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ReusableComposeNode|ReusableComposeNode(kotlin.Function0<0:0>;kotlin.Function1<androidx.compose.runtime.Updater<0:0>,kotlin.Unit>;kotlin.Function3<androidx.compose.runtime.SkippableUpdater<0:0>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>;1§<androidx.compose.runtime.Applier<*>>}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.runtime/Composer).androidx.compose.runtime/cache(kotlin/Boolean, kotlin/Function0<#A>): #A // androidx.compose.runtime/cache|cache@androidx.compose.runtime.Composer(kotlin.Boolean;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.runtime/MutableState<#A>).androidx.compose.runtime/setValue(kotlin/Any?, kotlin.reflect/KProperty<*>, #A) // androidx.compose.runtime/setValue|setValue@androidx.compose.runtime.MutableState<0:0>(kotlin.Any?;kotlin.reflect.KProperty<*>;0:0){0§<kotlin.Any?>}[0] final inline fun <#A: kotlin/Any?> (androidx.compose.runtime/State<#A>).androidx.compose.runtime/getValue(kotlin/Any?, kotlin.reflect/KProperty<*>): #A // androidx.compose.runtime/getValue|getValue@androidx.compose.runtime.State<0:0>(kotlin.Any?;kotlin.reflect.KProperty<*>){0§<kotlin.Any?>}[0] final inline fun <#A: kotlin/Any?> androidx.compose.runtime.platform/synchronized(androidx.compose.runtime.platform/SynchronizedObject, kotlin/Function0<#A>): #A // androidx.compose.runtime.platform/synchronized|synchronized(androidx.compose.runtime.platform.SynchronizedObject;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] final inline fun <#A: kotlin/Any?> androidx.compose.runtime.snapshots/sync(kotlin/Function0<#A>): #A // androidx.compose.runtime.snapshots/sync|sync(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/key(kotlin/Array<out kotlin/Any?>..., kotlin/Function0<#A>): #A // androidx.compose.runtime/key|key(kotlin.Array<out|kotlin.Any?>...;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(crossinline kotlin/Function0<#A>): #A // androidx.compose.runtime/remember|remember(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, crossinline kotlin/Function0<#A>): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, crossinline kotlin/Function0<#A>): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Any?;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, kotlin/Any?, crossinline kotlin/Function0<#A>): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] -final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Array<out kotlin/Any?>..., crossinline kotlin/Function0<#A>): #A // androidx.compose.runtime/remember|remember(kotlin.Array<out|kotlin.Any?>...;kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/key(kotlin/Array<out kotlin/Any?>..., kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, #A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/key|key(kotlin.Array<out|kotlin.Any?>...;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(crossinline kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/remember|remember(kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, crossinline kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, crossinline kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Any?;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Any?, kotlin/Any?, kotlin/Any?, crossinline kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/remember|remember(kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] +final inline fun <#A: kotlin/Any?> androidx.compose.runtime/remember(kotlin/Array<out kotlin/Any?>..., crossinline kotlin/Function0<#A>, androidx.compose.runtime/Composer?, kotlin/Int): #A // androidx.compose.runtime/remember|remember(kotlin.Array<out|kotlin.Any?>...;kotlin.Function0<0:0>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any?>}[0] final inline fun <#A: reified kotlin/Any?> androidx.compose.runtime.collection/MutableVector(kotlin/Int = ...): androidx.compose.runtime.collection/MutableVector<#A> // androidx.compose.runtime.collection/MutableVector|MutableVector(kotlin.Int){0§<kotlin.Any?>}[0] final inline fun <#A: reified kotlin/Any?> androidx.compose.runtime.collection/MutableVector(kotlin/Int, noinline kotlin/Function1<kotlin/Int, #A>): androidx.compose.runtime.collection/MutableVector<#A> // androidx.compose.runtime.collection/MutableVector|MutableVector(kotlin.Int;kotlin.Function1<kotlin.Int,0:0>){0§<kotlin.Any?>}[0] final inline fun <#A: reified kotlin/Any?> androidx.compose.runtime.collection/mutableVectorOf(): androidx.compose.runtime.collection/MutableVector<#A> // androidx.compose.runtime.collection/mutableVectorOf|mutableVectorOf(){0§<kotlin.Any?>}[0] final inline fun <#A: reified kotlin/Any?> androidx.compose.runtime.collection/mutableVectorOf(kotlin/Array<out #A>...): androidx.compose.runtime.collection/MutableVector<#A> // androidx.compose.runtime.collection/mutableVectorOf|mutableVectorOf(kotlin.Array<out|0:0>...){0§<kotlin.Any?>}[0] -final inline fun androidx.compose.runtime/ReusableContent(kotlin/Any?, kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ReusableContent|ReusableContent(kotlin.Any?;kotlin.Function0<kotlin.Unit>){}[0] -final inline fun androidx.compose.runtime/ReusableContentHost(kotlin/Boolean, crossinline kotlin/Function0<kotlin/Unit>) // androidx.compose.runtime/ReusableContentHost|ReusableContentHost(kotlin.Boolean;kotlin.Function0<kotlin.Unit>){}[0] -final inline fun androidx.compose.runtime/rememberCoroutineScope(crossinline kotlin/Function0<kotlin.coroutines/CoroutineContext> = ...): kotlinx.coroutines/CoroutineScope // androidx.compose.runtime/rememberCoroutineScope|rememberCoroutineScope(kotlin.Function0<kotlin.coroutines.CoroutineContext>){}[0] +final inline fun androidx.compose.runtime/ReusableContent(kotlin/Any?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ReusableContent|ReusableContent(kotlin.Any?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final inline fun androidx.compose.runtime/ReusableContentHost(kotlin/Boolean, crossinline kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.runtime/ReusableContentHost|ReusableContentHost(kotlin.Boolean;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final inline fun androidx.compose.runtime/rememberCoroutineScope(crossinline kotlin/Function0<kotlin.coroutines/CoroutineContext>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlinx.coroutines/CoroutineScope // androidx.compose.runtime/rememberCoroutineScope|rememberCoroutineScope(kotlin.Function0<kotlin.coroutines.CoroutineContext>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final suspend fun <#A: kotlin/Any?> androidx.compose.runtime/withFrameMillis(kotlin/Function1<kotlin/Long, #A>): #A // androidx.compose.runtime/withFrameMillis|withFrameMillis(kotlin.Function1<kotlin.Long,0:0>){0§<kotlin.Any?>}[0] final suspend fun <#A: kotlin/Any?> androidx.compose.runtime/withFrameNanos(kotlin/Function1<kotlin/Long, #A>): #A // androidx.compose.runtime/withFrameNanos|withFrameNanos(kotlin.Function1<kotlin.Long,0:0>){0§<kotlin.Any?>}[0] final suspend fun <#A: kotlin/Any?> androidx.compose.runtime/withRunningRecomposer(kotlin.coroutines/SuspendFunction2<kotlinx.coroutines/CoroutineScope, androidx.compose.runtime/Recomposer, #A>): #A // androidx.compose.runtime/withRunningRecomposer|withRunningRecomposer(kotlin.coroutines.SuspendFunction2<kotlinx.coroutines.CoroutineScope,androidx.compose.runtime.Recomposer,0:0>){0§<kotlin.Any?>}[0]
diff --git a/compose/ui/ui-geometry/bcv/native/current.txt b/compose/ui/ui-geometry/bcv/native/current.txt index d2ce3c9..a687954 100644 --- a/compose/ui/ui-geometry/bcv/native/current.txt +++ b/compose/ui/ui-geometry/bcv/native/current.txt
@@ -299,6 +299,9 @@ final const val androidx.compose.ui.geometry/UnspecifiedPackedFloats // androidx.compose.ui.geometry/UnspecifiedPackedFloats|{}UnspecifiedPackedFloats[0] final fun <get-UnspecifiedPackedFloats>(): kotlin/Long // androidx.compose.ui.geometry/UnspecifiedPackedFloats.<get-UnspecifiedPackedFloats>|<get-UnspecifiedPackedFloats>(){}[0] +final val androidx.compose.ui.geometry/androidx_compose_ui_geometry_MutableRect$stableprop // androidx.compose.ui.geometry/androidx_compose_ui_geometry_MutableRect$stableprop|#static{}androidx_compose_ui_geometry_MutableRect$stableprop[0] +final val androidx.compose.ui.geometry/androidx_compose_ui_geometry_Rect$stableprop // androidx.compose.ui.geometry/androidx_compose_ui_geometry_Rect$stableprop|#static{}androidx_compose_ui_geometry_Rect$stableprop[0] +final val androidx.compose.ui.geometry/androidx_compose_ui_geometry_RoundRect$stableprop // androidx.compose.ui.geometry/androidx_compose_ui_geometry_RoundRect$stableprop|#static{}androidx_compose_ui_geometry_RoundRect$stableprop[0] final val androidx.compose.ui.geometry/boundingRect // androidx.compose.ui.geometry/boundingRect|@androidx.compose.ui.geometry.RoundRect{}boundingRect[0] final fun (androidx.compose.ui.geometry/RoundRect).<get-boundingRect>(): androidx.compose.ui.geometry/Rect // androidx.compose.ui.geometry/boundingRect.<get-boundingRect>|<get-boundingRect>@androidx.compose.ui.geometry.RoundRect(){}[0] final val androidx.compose.ui.geometry/center // androidx.compose.ui.geometry/center|@androidx.compose.ui.geometry.RoundRect{}center[0] @@ -348,6 +351,9 @@ final fun androidx.compose.ui.geometry/RoundRect(androidx.compose.ui.geometry/Rect, kotlin/Float, kotlin/Float): androidx.compose.ui.geometry/RoundRect // androidx.compose.ui.geometry/RoundRect|RoundRect(androidx.compose.ui.geometry.Rect;kotlin.Float;kotlin.Float){}[0] final fun androidx.compose.ui.geometry/RoundRect(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, androidx.compose.ui.geometry/CornerRadius): androidx.compose.ui.geometry/RoundRect // androidx.compose.ui.geometry/RoundRect|RoundRect(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;androidx.compose.ui.geometry.CornerRadius){}[0] final fun androidx.compose.ui.geometry/RoundRect(kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float): androidx.compose.ui.geometry/RoundRect // androidx.compose.ui.geometry/RoundRect|RoundRect(kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] +final fun androidx.compose.ui.geometry/androidx_compose_ui_geometry_MutableRect$stableprop_getter(): kotlin/Int // androidx.compose.ui.geometry/androidx_compose_ui_geometry_MutableRect$stableprop_getter|androidx_compose_ui_geometry_MutableRect$stableprop_getter(){}[0] +final fun androidx.compose.ui.geometry/androidx_compose_ui_geometry_Rect$stableprop_getter(): kotlin/Int // androidx.compose.ui.geometry/androidx_compose_ui_geometry_Rect$stableprop_getter|androidx_compose_ui_geometry_Rect$stableprop_getter(){}[0] +final fun androidx.compose.ui.geometry/androidx_compose_ui_geometry_RoundRect$stableprop_getter(): kotlin/Int // androidx.compose.ui.geometry/androidx_compose_ui_geometry_RoundRect$stableprop_getter|androidx_compose_ui_geometry_RoundRect$stableprop_getter(){}[0] final fun androidx.compose.ui.geometry/lerp(androidx.compose.ui.geometry/CornerRadius, androidx.compose.ui.geometry/CornerRadius, kotlin/Float): androidx.compose.ui.geometry/CornerRadius // androidx.compose.ui.geometry/lerp|lerp(androidx.compose.ui.geometry.CornerRadius;androidx.compose.ui.geometry.CornerRadius;kotlin.Float){}[0] final fun androidx.compose.ui.geometry/lerp(androidx.compose.ui.geometry/Offset, androidx.compose.ui.geometry/Offset, kotlin/Float): androidx.compose.ui.geometry/Offset // androidx.compose.ui.geometry/lerp|lerp(androidx.compose.ui.geometry.Offset;androidx.compose.ui.geometry.Offset;kotlin.Float){}[0] final fun androidx.compose.ui.geometry/lerp(androidx.compose.ui.geometry/Rect, androidx.compose.ui.geometry/Rect, kotlin/Float): androidx.compose.ui.geometry/Rect // androidx.compose.ui.geometry/lerp|lerp(androidx.compose.ui.geometry.Rect;androidx.compose.ui.geometry.Rect;kotlin.Float){}[0]
diff --git a/compose/ui/ui-test/bcv/native/current.ignore b/compose/ui/ui-test/bcv/native/current.ignore index 0332b62..eab08ea 100644 --- a/compose/ui/ui-test/bcv/native/current.ignore +++ b/compose/ui/ui-test/bcv/native/current.ignore
@@ -1,2 +1,5 @@ // Baseline format: 1.0 -[linuxX64]: Removed declaration androidx.compose.ui.test/IdlingResource from androidx.compose.ui:ui-test \ No newline at end of file +[linuxX64]: Removed declaration androidx.compose.ui.test/IdlingResource from androidx.compose.ui:ui-test +[linuxX64]: Removed declaration androidx.compose.ui.test/DeviceConfigurationOverride(androidx.compose.ui.test/DeviceConfigurationOverride, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui:ui-test +[linuxX64]: Removed declaration Override(kotlin/Function0<kotlin/Unit>) from androidx.compose.ui.test/DeviceConfigurationOverride +[linuxX64]: Added declaration Override(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) to androidx.compose.ui.test/DeviceConfigurationOverride \ No newline at end of file
diff --git a/compose/ui/ui-test/bcv/native/current.txt b/compose/ui/ui-test/bcv/native/current.txt index ca19e4d8..5ceb77c 100644 --- a/compose/ui/ui-test/bcv/native/current.txt +++ b/compose/ui/ui-test/bcv/native/current.txt
@@ -15,7 +15,7 @@ } abstract fun interface androidx.compose.ui.test/DeviceConfigurationOverride { // androidx.compose.ui.test/DeviceConfigurationOverride|null[0] - abstract fun Override(kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.test/DeviceConfigurationOverride.Override|Override(kotlin.Function0<kotlin.Unit>){}[0] + abstract fun Override(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.ui.test/DeviceConfigurationOverride.Override|Override(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final object Companion // androidx.compose.ui.test/DeviceConfigurationOverride.Companion|null[0] } @@ -239,6 +239,34 @@ } } +final val androidx.compose.ui.test.internal/androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop // androidx.compose.ui.test.internal/androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop|#static{}androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop[0] +final val androidx.compose.ui.test.platform/androidx_compose_ui_test_platform_SynchronizedObject$stableprop // androidx.compose.ui.test.platform/androidx_compose_ui_test_platform_SynchronizedObject$stableprop|#static{}androidx_compose_ui_test_platform_SynchronizedObject$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop|#static{}androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_ComposeTimeoutException$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_ComposeTimeoutException$stableprop|#static{}androidx_compose_ui_test_ComposeTimeoutException$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_GestureScope$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_GestureScope$stableprop|#static{}androidx_compose_ui_test_GestureScope$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop|#static{}androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcher$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcher$stableprop|#static{}androidx_compose_ui_test_InputDispatcher$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcherState$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcherState$stableprop|#static{}androidx_compose_ui_test_InputDispatcherState$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop|#static{}androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_KeyInputState$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_KeyInputState$stableprop|#static{}androidx_compose_ui_test_KeyInputState$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_LsqVelocityPathFinder$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_LsqVelocityPathFinder$stableprop|#static{}androidx_compose_ui_test_LsqVelocityPathFinder$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop|#static{}androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_MouseInputState$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_MouseInputState$stableprop|#static{}androidx_compose_ui_test_MouseInputState$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop|#static{}androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_PartialGesture$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_PartialGesture$stableprop|#static{}androidx_compose_ui_test_PartialGesture$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_PlatformTestContext$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_PlatformTestContext$stableprop|#static{}androidx_compose_ui_test_PlatformTestContext$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop|#static{}androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_RotaryInputState$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_RotaryInputState$stableprop|#static{}androidx_compose_ui_test_RotaryInputState$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_SelectionResult$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_SelectionResult$stableprop|#static{}androidx_compose_ui_test_SelectionResult$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_SemanticsMatcher$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsMatcher$stableprop|#static{}androidx_compose_ui_test_SemanticsMatcher$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteraction$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteraction$stableprop|#static{}androidx_compose_ui_test_SemanticsNodeInteraction$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop|#static{}androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_SemanticsSelector$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsSelector$stableprop|#static{}androidx_compose_ui_test_SemanticsSelector$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_StateRestorationTester$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_StateRestorationTester$stableprop|#static{}androidx_compose_ui_test_StateRestorationTester$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_TestContext$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_TestContext$stableprop|#static{}androidx_compose_ui_test_TestContext$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop|#static{}androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_UncaughtExceptionHandler$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_UncaughtExceptionHandler$stableprop|#static{}androidx_compose_ui_test_UncaughtExceptionHandler$stableprop[0] +final val androidx.compose.ui.test/androidx_compose_ui_test_VelocityPathFinder$stableprop // androidx.compose.ui.test/androidx_compose_ui_test_VelocityPathFinder$stableprop|#static{}androidx_compose_ui_test_VelocityPathFinder$stableprop[0] final val androidx.compose.ui.test/bottom // androidx.compose.ui.test/bottom|@androidx.compose.ui.test.GestureScope{}bottom[0] final inline fun (androidx.compose.ui.test/GestureScope).<get-bottom>(): kotlin/Float // androidx.compose.ui.test/bottom.<get-bottom>|<get-bottom>@androidx.compose.ui.test.GestureScope(){}[0] final val androidx.compose.ui.test/bottomCenter // androidx.compose.ui.test/bottomCenter|@androidx.compose.ui.test.GestureScope{}bottomCenter[0] @@ -424,7 +452,35 @@ final fun (androidx.compose.ui.unit/Dp).androidx.compose.ui.test/assertIsEqualTo(androidx.compose.ui.unit/Dp, kotlin/String, androidx.compose.ui.unit/Dp = ...) // androidx.compose.ui.test/assertIsEqualTo|assertIsEqualTo@androidx.compose.ui.unit.Dp(androidx.compose.ui.unit.Dp;kotlin.String;androidx.compose.ui.unit.Dp){}[0] final fun <#A: kotlin/Function<kotlin/Boolean>> (androidx.compose.ui.test/SemanticsNodeInteraction).androidx.compose.ui.test/performSemanticsAction(androidx.compose.ui.semantics/SemanticsPropertyKey<androidx.compose.ui.semantics/AccessibilityAction<#A>>, kotlin/Function1<#A, kotlin/Unit>): androidx.compose.ui.test/SemanticsNodeInteraction // androidx.compose.ui.test/performSemanticsAction|performSemanticsAction@androidx.compose.ui.test.SemanticsNodeInteraction(androidx.compose.ui.semantics.SemanticsPropertyKey<androidx.compose.ui.semantics.AccessibilityAction<0:0>>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Function<kotlin.Boolean>>}[0] final fun <#A: kotlin/Function<kotlin/Boolean>> (androidx.compose.ui.test/SemanticsNodeInteraction).androidx.compose.ui.test/performSemanticsActionUnit(androidx.compose.ui.semantics/SemanticsPropertyKey<androidx.compose.ui.semantics/AccessibilityAction<#A>>, kotlin/Function1<#A, kotlin/Unit>) // androidx.compose.ui.test/performSemanticsActionUnit|performSemanticsActionUnit@androidx.compose.ui.test.SemanticsNodeInteraction(androidx.compose.ui.semantics.SemanticsPropertyKey<androidx.compose.ui.semantics.AccessibilityAction<0:0>>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Function<kotlin.Boolean>>}[0] -final fun androidx.compose.ui.test/DeviceConfigurationOverride(androidx.compose.ui.test/DeviceConfigurationOverride, kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.test/DeviceConfigurationOverride|DeviceConfigurationOverride(androidx.compose.ui.test.DeviceConfigurationOverride;kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.ui.test.internal/androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop_getter(): kotlin/Int // androidx.compose.ui.test.internal/androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop_getter|androidx_compose_ui_test_internal_DelayPropagatingContinuationInterceptorWrapper$stableprop_getter(){}[0] +final fun androidx.compose.ui.test.platform/androidx_compose_ui_test_platform_SynchronizedObject$stableprop_getter(): kotlin/Int // androidx.compose.ui.test.platform/androidx_compose_ui_test_platform_SynchronizedObject$stableprop_getter|androidx_compose_ui_test_platform_SynchronizedObject$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/DeviceConfigurationOverride(androidx.compose.ui.test/DeviceConfigurationOverride, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.ui.test/DeviceConfigurationOverride|DeviceConfigurationOverride(androidx.compose.ui.test.DeviceConfigurationOverride;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop_getter|androidx_compose_ui_test_ApplyingContinuationInterceptor$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_ComposeTimeoutException$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_ComposeTimeoutException$stableprop_getter|androidx_compose_ui_test_ComposeTimeoutException$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_GestureScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_GestureScope$stableprop_getter|androidx_compose_ui_test_GestureScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop_getter|androidx_compose_ui_test_ImpulseVelocityPathFinder$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcher$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcher$stableprop_getter|androidx_compose_ui_test_InputDispatcher$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcherState$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_InputDispatcherState$stableprop_getter|androidx_compose_ui_test_InputDispatcherState$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop_getter|androidx_compose_ui_test_KeyInjectionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_KeyInputState$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_KeyInputState$stableprop_getter|androidx_compose_ui_test_KeyInputState$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_LsqVelocityPathFinder$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_LsqVelocityPathFinder$stableprop_getter|androidx_compose_ui_test_LsqVelocityPathFinder$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop_getter|androidx_compose_ui_test_MouseInjectionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_MouseInputState$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_MouseInputState$stableprop_getter|androidx_compose_ui_test_MouseInputState$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop_getter|androidx_compose_ui_test_MultiModalInjectionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_PartialGesture$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_PartialGesture$stableprop_getter|androidx_compose_ui_test_PartialGesture$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_PlatformTestContext$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_PlatformTestContext$stableprop_getter|androidx_compose_ui_test_PlatformTestContext$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop_getter|androidx_compose_ui_test_RotaryInjectionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_RotaryInputState$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_RotaryInputState$stableprop_getter|androidx_compose_ui_test_RotaryInputState$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_SelectionResult$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_SelectionResult$stableprop_getter|androidx_compose_ui_test_SelectionResult$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_SemanticsMatcher$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsMatcher$stableprop_getter|androidx_compose_ui_test_SemanticsMatcher$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteraction$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteraction$stableprop_getter|androidx_compose_ui_test_SemanticsNodeInteraction$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop_getter|androidx_compose_ui_test_SemanticsNodeInteractionCollection$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_SemanticsSelector$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_SemanticsSelector$stableprop_getter|androidx_compose_ui_test_SemanticsSelector$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_StateRestorationTester$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_StateRestorationTester$stableprop_getter|androidx_compose_ui_test_StateRestorationTester$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_TestContext$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_TestContext$stableprop_getter|androidx_compose_ui_test_TestContext$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop_getter|androidx_compose_ui_test_TouchInjectionScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_UncaughtExceptionHandler$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_UncaughtExceptionHandler$stableprop_getter|androidx_compose_ui_test_UncaughtExceptionHandler$stableprop_getter(){}[0] +final fun androidx.compose.ui.test/androidx_compose_ui_test_VelocityPathFinder$stableprop_getter(): kotlin/Int // androidx.compose.ui.test/androidx_compose_ui_test_VelocityPathFinder$stableprop_getter|androidx_compose_ui_test_VelocityPathFinder$stableprop_getter(){}[0] final fun androidx.compose.ui.test/hasAnyAncestor(androidx.compose.ui.test/SemanticsMatcher): androidx.compose.ui.test/SemanticsMatcher // androidx.compose.ui.test/hasAnyAncestor|hasAnyAncestor(androidx.compose.ui.test.SemanticsMatcher){}[0] final fun androidx.compose.ui.test/hasAnyChild(androidx.compose.ui.test/SemanticsMatcher): androidx.compose.ui.test/SemanticsMatcher // androidx.compose.ui.test/hasAnyChild|hasAnyChild(androidx.compose.ui.test.SemanticsMatcher){}[0] final fun androidx.compose.ui.test/hasAnyDescendant(androidx.compose.ui.test/SemanticsMatcher): androidx.compose.ui.test/SemanticsMatcher // androidx.compose.ui.test/hasAnyDescendant|hasAnyDescendant(androidx.compose.ui.test.SemanticsMatcher){}[0]
diff --git a/compose/ui/ui-text/bcv/native/current.txt b/compose/ui/ui-text/bcv/native/current.txt index 32427bf..3ded73c 100644 --- a/compose/ui/ui-text/bcv/native/current.txt +++ b/compose/ui/ui-text/bcv/native/current.txt
@@ -1702,6 +1702,89 @@ final fun paint(androidx.compose.ui.graphics/Canvas, androidx.compose.ui.text/TextLayoutResult) // androidx.compose.ui.text/TextPainter.paint|paint(androidx.compose.ui.graphics.Canvas;androidx.compose.ui.text.TextLayoutResult){}[0] } +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncFontListLoader$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncFontListLoader$stableprop|#static{}androidx_compose_ui_text_font_AsyncFontListLoader$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop|#static{}androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop|#static{}androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_DefaultFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_DefaultFontFamily$stableprop|#static{}androidx_compose_ui_text_font_DefaultFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FileBasedFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FileBasedFontFamily$stableprop|#static{}androidx_compose_ui_text_font_FileBasedFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamily$stableprop|#static{}androidx_compose_ui_text_font_FontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop|#static{}androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamily$stableprop|#static{}androidx_compose_ui_text_font_FontListFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop|#static{}androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontMatcher$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontMatcher$stableprop|#static{}androidx_compose_ui_text_font_FontMatcher$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation$stableprop|#static{}androidx_compose_ui_text_font_FontVariation$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation_Settings$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation_Settings$stableprop|#static{}androidx_compose_ui_text_font_FontVariation_Settings$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontWeight$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontWeight$stableprop|#static{}androidx_compose_ui_text_font_FontWeight$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_GenericFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_GenericFontFamily$stableprop|#static{}androidx_compose_ui_text_font_GenericFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_LoadedFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_LoadedFontFamily$stableprop|#static{}androidx_compose_ui_text_font_LoadedFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop|#static{}androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_ResourceFont$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_ResourceFont$stableprop|#static{}androidx_compose_ui_text_font_ResourceFont$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_SystemFontFamily$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_SystemFontFamily$stableprop|#static{}androidx_compose_ui_text_font_SystemFontFamily$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequest$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequest$stableprop|#static{}androidx_compose_ui_text_font_TypefaceRequest$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequestCache$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequestCache$stableprop|#static{}androidx_compose_ui_text_font_TypefaceRequestCache$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Async$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Async$stableprop|#static{}androidx_compose_ui_text_font_TypefaceResult_Async$stableprop[0] +final val androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop|#static{}androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_BackspaceCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_BackspaceCommand$stableprop|#static{}androidx_compose_ui_text_input_BackspaceCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_CommitTextCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_CommitTextCommand$stableprop|#static{}androidx_compose_ui_text_input_CommitTextCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteAllCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteAllCommand$stableprop|#static{}androidx_compose_ui_text_input_DeleteAllCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop|#static{}androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop|#static{}androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditProcessor$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditProcessor$stableprop|#static{}androidx_compose_ui_text_input_EditProcessor$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditingBuffer$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditingBuffer$stableprop|#static{}androidx_compose_ui_text_input_EditingBuffer$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop|#static{}androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_ImeOptions$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_ImeOptions$stableprop|#static{}androidx_compose_ui_text_input_ImeOptions$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_MoveCursorCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_MoveCursorCommand$stableprop|#static{}androidx_compose_ui_text_input_MoveCursorCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_PartialGapBuffer$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PartialGapBuffer$stableprop|#static{}androidx_compose_ui_text_input_PartialGapBuffer$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop|#static{}androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_PlatformImeOptions$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PlatformImeOptions$stableprop|#static{}androidx_compose_ui_text_input_PlatformImeOptions$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop|#static{}androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingTextCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingTextCommand$stableprop|#static{}androidx_compose_ui_text_input_SetComposingTextCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetSelectionCommand$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetSelectionCommand$stableprop|#static{}androidx_compose_ui_text_input_SetSelectionCommand$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextFieldValue$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextFieldValue$stableprop|#static{}androidx_compose_ui_text_input_TextFieldValue$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputService$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputService$stableprop|#static{}androidx_compose_ui_text_input_TextInputService$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputSession$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputSession$stableprop|#static{}androidx_compose_ui_text_input_TextInputSession$stableprop[0] +final val androidx.compose.ui.text.input/androidx_compose_ui_text_input_TransformedText$stableprop // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TransformedText$stableprop|#static{}androidx_compose_ui_text_input_TransformedText$stableprop[0] +final val androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_Locale$stableprop // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_Locale$stableprop|#static{}androidx_compose_ui_text_intl_Locale$stableprop[0] +final val androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_LocaleList$stableprop // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_LocaleList$stableprop|#static{}androidx_compose_ui_text_intl_LocaleList$stableprop[0] +final val androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_PlatformLocale$stableprop // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_PlatformLocale$stableprop|#static{}androidx_compose_ui_text_intl_PlatformLocale$stableprop[0] +final val androidx.compose.ui.text.platform/androidx_compose_ui_text_platform_SynchronizedObject$stableprop // androidx.compose.ui.text.platform/androidx_compose_ui_text_platform_SynchronizedObject$stableprop|#static{}androidx_compose_ui_text_platform_SynchronizedObject$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_LineHeightStyle$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_LineHeightStyle$stableprop|#static{}androidx_compose_ui_text_style_LineHeightStyle$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextDecoration$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextDecoration$stableprop|#static{}androidx_compose_ui_text_style_TextDecoration$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop|#static{}androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextGeometricTransform$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextGeometricTransform$stableprop|#static{}androidx_compose_ui_text_style_TextGeometricTransform$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextIndent$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextIndent$stableprop|#static{}androidx_compose_ui_text_style_TextIndent$stableprop[0] +final val androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextMotion$stableprop // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextMotion$stableprop|#static{}androidx_compose_ui_text_style_TextMotion$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString$stableprop|#static{}androidx_compose_ui_text_AnnotatedString$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder$stableprop|#static{}androidx_compose_ui_text_AnnotatedString_Builder$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop|#static{}androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Range$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Range$stableprop|#static{}androidx_compose_ui_text_AnnotatedString_Range$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_AtomicReference$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_AtomicReference$stableprop|#static{}androidx_compose_ui_text_AtomicReference$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_Bullet$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_Bullet$stableprop|#static{}androidx_compose_ui_text_Bullet$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_CacheTextLayoutInput$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_CacheTextLayoutInput$stableprop|#static{}androidx_compose_ui_text_CacheTextLayoutInput$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation$stableprop|#static{}androidx_compose_ui_text_LinkAnnotation$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop|#static{}androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Url$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Url$stableprop|#static{}androidx_compose_ui_text_LinkAnnotation_Url$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraph$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraph$stableprop|#static{}androidx_compose_ui_text_MultiParagraph$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop|#static{}androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_ParagraphInfo$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphInfo$stableprop|#static{}androidx_compose_ui_text_ParagraphInfo$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop|#static{}androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_ParagraphStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphStyle$stableprop|#static{}androidx_compose_ui_text_ParagraphStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_Placeholder$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_Placeholder$stableprop|#static{}androidx_compose_ui_text_Placeholder$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_PlatformParagraphStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_PlatformParagraphStyle$stableprop|#static{}androidx_compose_ui_text_PlatformParagraphStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_PlatformSpanStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_PlatformSpanStyle$stableprop|#static{}androidx_compose_ui_text_PlatformSpanStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_PlatformTextStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_PlatformTextStyle$stableprop|#static{}androidx_compose_ui_text_PlatformTextStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_SpanStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_SpanStyle$stableprop|#static{}androidx_compose_ui_text_SpanStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutCache$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutCache$stableprop|#static{}androidx_compose_ui_text_TextLayoutCache$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutInput$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutInput$stableprop|#static{}androidx_compose_ui_text_TextLayoutInput$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutResult$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutResult$stableprop|#static{}androidx_compose_ui_text_TextLayoutResult$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextLinkStyles$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextLinkStyles$stableprop|#static{}androidx_compose_ui_text_TextLinkStyles$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextMeasurer$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextMeasurer$stableprop|#static{}androidx_compose_ui_text_TextMeasurer$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextPainter$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextPainter$stableprop|#static{}androidx_compose_ui_text_TextPainter$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TextStyle$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TextStyle$stableprop|#static{}androidx_compose_ui_text_TextStyle$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_TtsAnnotation$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_TtsAnnotation$stableprop|#static{}androidx_compose_ui_text_TtsAnnotation$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_UrlAnnotation$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_UrlAnnotation$stableprop|#static{}androidx_compose_ui_text_UrlAnnotation$stableprop[0] +final val androidx.compose.ui.text/androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop // androidx.compose.ui.text/androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop|#static{}androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop[0] + final fun (androidx.compose.ui.graphics.drawscope/DrawScope).androidx.compose.ui.text/drawText(androidx.compose.ui.text/TextLayoutResult, androidx.compose.ui.graphics/Brush, androidx.compose.ui.geometry/Offset = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Shadow? = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.graphics.drawscope/DrawStyle? = ..., androidx.compose.ui.graphics/BlendMode = ...) // androidx.compose.ui.text/drawText|drawText@androidx.compose.ui.graphics.drawscope.DrawScope(androidx.compose.ui.text.TextLayoutResult;androidx.compose.ui.graphics.Brush;androidx.compose.ui.geometry.Offset;kotlin.Float;androidx.compose.ui.graphics.Shadow?;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.graphics.drawscope.DrawStyle?;androidx.compose.ui.graphics.BlendMode){}[0] final fun (androidx.compose.ui.graphics.drawscope/DrawScope).androidx.compose.ui.text/drawText(androidx.compose.ui.text/TextLayoutResult, androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.geometry/Offset = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Shadow? = ..., androidx.compose.ui.text.style/TextDecoration? = ..., androidx.compose.ui.graphics.drawscope/DrawStyle? = ..., androidx.compose.ui.graphics/BlendMode = ...) // androidx.compose.ui.text/drawText|drawText@androidx.compose.ui.graphics.drawscope.DrawScope(androidx.compose.ui.text.TextLayoutResult;androidx.compose.ui.graphics.Color;androidx.compose.ui.geometry.Offset;kotlin.Float;androidx.compose.ui.graphics.Shadow?;androidx.compose.ui.text.style.TextDecoration?;androidx.compose.ui.graphics.drawscope.DrawStyle?;androidx.compose.ui.graphics.BlendMode){}[0] final fun (androidx.compose.ui.graphics.drawscope/DrawScope).androidx.compose.ui.text/drawText(androidx.compose.ui.text/TextMeasurer, androidx.compose.ui.text/AnnotatedString, androidx.compose.ui.geometry/Offset = ..., androidx.compose.ui.text/TextStyle = ..., androidx.compose.ui.text.style/TextOverflow = ..., kotlin/Boolean = ..., kotlin/Int = ..., kotlin.collections/List<androidx.compose.ui.text/AnnotatedString.Range<androidx.compose.ui.text/Placeholder>> = ..., androidx.compose.ui.geometry/Size = ..., androidx.compose.ui.graphics/BlendMode = ...) // androidx.compose.ui.text/drawText|drawText@androidx.compose.ui.graphics.drawscope.DrawScope(androidx.compose.ui.text.TextMeasurer;androidx.compose.ui.text.AnnotatedString;androidx.compose.ui.geometry.Offset;androidx.compose.ui.text.TextStyle;androidx.compose.ui.text.style.TextOverflow;kotlin.Boolean;kotlin.Int;kotlin.collections.List<androidx.compose.ui.text.AnnotatedString.Range<androidx.compose.ui.text.Placeholder>>;androidx.compose.ui.geometry.Size;androidx.compose.ui.graphics.BlendMode){}[0] @@ -1729,7 +1812,59 @@ final fun androidx.compose.ui.text.font/FontFamily(androidx.compose.ui.text.font/Typeface): androidx.compose.ui.text.font/FontFamily // androidx.compose.ui.text.font/FontFamily|FontFamily(androidx.compose.ui.text.font.Typeface){}[0] final fun androidx.compose.ui.text.font/FontFamily(kotlin.collections/List<androidx.compose.ui.text.font/Font>): androidx.compose.ui.text.font/FontFamily // androidx.compose.ui.text.font/FontFamily|FontFamily(kotlin.collections.List<androidx.compose.ui.text.font.Font>){}[0] final fun androidx.compose.ui.text.font/FontFamily(kotlin/Array<out androidx.compose.ui.text.font/Font>...): androidx.compose.ui.text.font/FontFamily // androidx.compose.ui.text.font/FontFamily|FontFamily(kotlin.Array<out|androidx.compose.ui.text.font.Font>...){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncFontListLoader$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncFontListLoader$stableprop_getter|androidx_compose_ui_text_font_AsyncFontListLoader$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop_getter|androidx_compose_ui_text_font_AsyncTypefaceCache$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop_getter|androidx_compose_ui_text_font_AsyncTypefaceCache_Key$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_DefaultFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_DefaultFontFamily$stableprop_getter|androidx_compose_ui_text_font_DefaultFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FileBasedFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FileBasedFontFamily$stableprop_getter|androidx_compose_ui_text_font_FileBasedFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamily$stableprop_getter|androidx_compose_ui_text_font_FontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop_getter|androidx_compose_ui_text_font_FontFamilyResolverImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamily$stableprop_getter|androidx_compose_ui_text_font_FontListFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop_getter|androidx_compose_ui_text_font_FontListFontFamilyTypefaceAdapter$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontMatcher$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontMatcher$stableprop_getter|androidx_compose_ui_text_font_FontMatcher$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation$stableprop_getter|androidx_compose_ui_text_font_FontVariation$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation_Settings$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontVariation_Settings$stableprop_getter|androidx_compose_ui_text_font_FontVariation_Settings$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontWeight$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_FontWeight$stableprop_getter|androidx_compose_ui_text_font_FontWeight$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_GenericFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_GenericFontFamily$stableprop_getter|androidx_compose_ui_text_font_GenericFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_LoadedFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_LoadedFontFamily$stableprop_getter|androidx_compose_ui_text_font_LoadedFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop_getter|androidx_compose_ui_text_font_PlatformFontFamilyTypefaceAdapter$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_ResourceFont$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_ResourceFont$stableprop_getter|androidx_compose_ui_text_font_ResourceFont$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_SystemFontFamily$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_SystemFontFamily$stableprop_getter|androidx_compose_ui_text_font_SystemFontFamily$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequest$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequest$stableprop_getter|androidx_compose_ui_text_font_TypefaceRequest$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequestCache$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceRequestCache$stableprop_getter|androidx_compose_ui_text_font_TypefaceRequestCache$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Async$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Async$stableprop_getter|androidx_compose_ui_text_font_TypefaceResult_Async$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.font/androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop_getter|androidx_compose_ui_text_font_TypefaceResult_Immutable$stableprop_getter(){}[0] final fun androidx.compose.ui.text.font/lerp(androidx.compose.ui.text.font/FontWeight, androidx.compose.ui.text.font/FontWeight, kotlin/Float): androidx.compose.ui.text.font/FontWeight // androidx.compose.ui.text.font/lerp|lerp(androidx.compose.ui.text.font.FontWeight;androidx.compose.ui.text.font.FontWeight;kotlin.Float){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_BackspaceCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_BackspaceCommand$stableprop_getter|androidx_compose_ui_text_input_BackspaceCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_CommitTextCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_CommitTextCommand$stableprop_getter|androidx_compose_ui_text_input_CommitTextCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteAllCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteAllCommand$stableprop_getter|androidx_compose_ui_text_input_DeleteAllCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop_getter|androidx_compose_ui_text_input_DeleteSurroundingTextCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop_getter|androidx_compose_ui_text_input_DeleteSurroundingTextInCodePointsCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditProcessor$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditProcessor$stableprop_getter|androidx_compose_ui_text_input_EditProcessor$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditingBuffer$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_EditingBuffer$stableprop_getter|androidx_compose_ui_text_input_EditingBuffer$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop_getter|androidx_compose_ui_text_input_FinishComposingTextCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_ImeOptions$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_ImeOptions$stableprop_getter|androidx_compose_ui_text_input_ImeOptions$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_MoveCursorCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_MoveCursorCommand$stableprop_getter|androidx_compose_ui_text_input_MoveCursorCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_PartialGapBuffer$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PartialGapBuffer$stableprop_getter|androidx_compose_ui_text_input_PartialGapBuffer$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop_getter|androidx_compose_ui_text_input_PasswordVisualTransformation$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_PlatformImeOptions$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_PlatformImeOptions$stableprop_getter|androidx_compose_ui_text_input_PlatformImeOptions$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop_getter|androidx_compose_ui_text_input_SetComposingRegionCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingTextCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetComposingTextCommand$stableprop_getter|androidx_compose_ui_text_input_SetComposingTextCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetSelectionCommand$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_SetSelectionCommand$stableprop_getter|androidx_compose_ui_text_input_SetSelectionCommand$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextFieldValue$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextFieldValue$stableprop_getter|androidx_compose_ui_text_input_TextFieldValue$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputService$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputService$stableprop_getter|androidx_compose_ui_text_input_TextInputService$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputSession$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TextInputSession$stableprop_getter|androidx_compose_ui_text_input_TextInputSession$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.input/androidx_compose_ui_text_input_TransformedText$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.input/androidx_compose_ui_text_input_TransformedText$stableprop_getter|androidx_compose_ui_text_input_TransformedText$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_Locale$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_Locale$stableprop_getter|androidx_compose_ui_text_intl_Locale$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_LocaleList$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_LocaleList$stableprop_getter|androidx_compose_ui_text_intl_LocaleList$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_PlatformLocale$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.intl/androidx_compose_ui_text_intl_PlatformLocale$stableprop_getter|androidx_compose_ui_text_intl_PlatformLocale$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.platform/androidx_compose_ui_text_platform_SynchronizedObject$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.platform/androidx_compose_ui_text_platform_SynchronizedObject$stableprop_getter|androidx_compose_ui_text_platform_SynchronizedObject$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_LineHeightStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_LineHeightStyle$stableprop_getter|androidx_compose_ui_text_style_LineHeightStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextDecoration$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextDecoration$stableprop_getter|androidx_compose_ui_text_style_TextDecoration$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop_getter|androidx_compose_ui_text_style_TextForegroundStyle_Unspecified$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextGeometricTransform$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextGeometricTransform$stableprop_getter|androidx_compose_ui_text_style_TextGeometricTransform$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextIndent$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextIndent$stableprop_getter|androidx_compose_ui_text_style_TextIndent$stableprop_getter(){}[0] +final fun androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextMotion$stableprop_getter(): kotlin/Int // androidx.compose.ui.text.style/androidx_compose_ui_text_style_TextMotion$stableprop_getter|androidx_compose_ui_text_style_TextMotion$stableprop_getter(){}[0] final fun androidx.compose.ui.text.style/lerp(androidx.compose.ui.text.style/BaselineShift, androidx.compose.ui.text.style/BaselineShift, kotlin/Float): androidx.compose.ui.text.style/BaselineShift // androidx.compose.ui.text.style/lerp|lerp(androidx.compose.ui.text.style.BaselineShift;androidx.compose.ui.text.style.BaselineShift;kotlin.Float){}[0] final fun androidx.compose.ui.text.style/lerp(androidx.compose.ui.text.style/TextGeometricTransform, androidx.compose.ui.text.style/TextGeometricTransform, kotlin/Float): androidx.compose.ui.text.style/TextGeometricTransform // androidx.compose.ui.text.style/lerp|lerp(androidx.compose.ui.text.style.TextGeometricTransform;androidx.compose.ui.text.style.TextGeometricTransform;kotlin.Float){}[0] final fun androidx.compose.ui.text.style/lerp(androidx.compose.ui.text.style/TextIndent, androidx.compose.ui.text.style/TextIndent, kotlin/Float): androidx.compose.ui.text.style/TextIndent // androidx.compose.ui.text.style/lerp|lerp(androidx.compose.ui.text.style.TextIndent;androidx.compose.ui.text.style.TextIndent;kotlin.Float){}[0] @@ -1747,6 +1882,36 @@ final fun androidx.compose.ui.text/ParagraphIntrinsics(kotlin/String, androidx.compose.ui.text/TextStyle, kotlin.collections/List<androidx.compose.ui.text/AnnotatedString.Range<out androidx.compose.ui.text/AnnotatedString.Annotation>>, androidx.compose.ui.unit/Density, androidx.compose.ui.text.font/FontFamily.Resolver, kotlin.collections/List<androidx.compose.ui.text/AnnotatedString.Range<androidx.compose.ui.text/Placeholder>> = ...): androidx.compose.ui.text/ParagraphIntrinsics // androidx.compose.ui.text/ParagraphIntrinsics|ParagraphIntrinsics(kotlin.String;androidx.compose.ui.text.TextStyle;kotlin.collections.List<androidx.compose.ui.text.AnnotatedString.Range<out|androidx.compose.ui.text.AnnotatedString.Annotation>>;androidx.compose.ui.unit.Density;androidx.compose.ui.text.font.FontFamily.Resolver;kotlin.collections.List<androidx.compose.ui.text.AnnotatedString.Range<androidx.compose.ui.text.Placeholder>>){}[0] final fun androidx.compose.ui.text/TextRange(kotlin/Int): androidx.compose.ui.text/TextRange // androidx.compose.ui.text/TextRange|TextRange(kotlin.Int){}[0] final fun androidx.compose.ui.text/TextRange(kotlin/Int, kotlin/Int): androidx.compose.ui.text/TextRange // androidx.compose.ui.text/TextRange|TextRange(kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString$stableprop_getter|androidx_compose_ui_text_AnnotatedString$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder$stableprop_getter|androidx_compose_ui_text_AnnotatedString_Builder$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop_getter|androidx_compose_ui_text_AnnotatedString_Builder_BulletScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Range$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_AnnotatedString_Range$stableprop_getter|androidx_compose_ui_text_AnnotatedString_Range$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_AtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_AtomicReference$stableprop_getter|androidx_compose_ui_text_AtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_Bullet$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_Bullet$stableprop_getter|androidx_compose_ui_text_Bullet$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_CacheTextLayoutInput$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_CacheTextLayoutInput$stableprop_getter|androidx_compose_ui_text_CacheTextLayoutInput$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation$stableprop_getter|androidx_compose_ui_text_LinkAnnotation$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop_getter|androidx_compose_ui_text_LinkAnnotation_Clickable$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Url$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_LinkAnnotation_Url$stableprop_getter|androidx_compose_ui_text_LinkAnnotation_Url$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraph$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraph$stableprop_getter|androidx_compose_ui_text_MultiParagraph$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop_getter|androidx_compose_ui_text_MultiParagraphIntrinsics$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_ParagraphInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphInfo$stableprop_getter|androidx_compose_ui_text_ParagraphInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop_getter|androidx_compose_ui_text_ParagraphIntrinsicInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_ParagraphStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_ParagraphStyle$stableprop_getter|androidx_compose_ui_text_ParagraphStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_Placeholder$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_Placeholder$stableprop_getter|androidx_compose_ui_text_Placeholder$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_PlatformParagraphStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_PlatformParagraphStyle$stableprop_getter|androidx_compose_ui_text_PlatformParagraphStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_PlatformSpanStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_PlatformSpanStyle$stableprop_getter|androidx_compose_ui_text_PlatformSpanStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_PlatformTextStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_PlatformTextStyle$stableprop_getter|androidx_compose_ui_text_PlatformTextStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_SpanStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_SpanStyle$stableprop_getter|androidx_compose_ui_text_SpanStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutCache$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutCache$stableprop_getter|androidx_compose_ui_text_TextLayoutCache$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutInput$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutInput$stableprop_getter|androidx_compose_ui_text_TextLayoutInput$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutResult$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextLayoutResult$stableprop_getter|androidx_compose_ui_text_TextLayoutResult$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextLinkStyles$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextLinkStyles$stableprop_getter|androidx_compose_ui_text_TextLinkStyles$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextMeasurer$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextMeasurer$stableprop_getter|androidx_compose_ui_text_TextMeasurer$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextPainter$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextPainter$stableprop_getter|androidx_compose_ui_text_TextPainter$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TextStyle$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TextStyle$stableprop_getter|androidx_compose_ui_text_TextStyle$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_TtsAnnotation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_TtsAnnotation$stableprop_getter|androidx_compose_ui_text_TtsAnnotation$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_UrlAnnotation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_UrlAnnotation$stableprop_getter|androidx_compose_ui_text_UrlAnnotation$stableprop_getter(){}[0] +final fun androidx.compose.ui.text/androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop_getter(): kotlin/Int // androidx.compose.ui.text/androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop_getter|androidx_compose_ui_text_VerbatimTtsAnnotation$stableprop_getter(){}[0] final fun androidx.compose.ui.text/lerp(androidx.compose.ui.text/ParagraphStyle, androidx.compose.ui.text/ParagraphStyle, kotlin/Float): androidx.compose.ui.text/ParagraphStyle // androidx.compose.ui.text/lerp|lerp(androidx.compose.ui.text.ParagraphStyle;androidx.compose.ui.text.ParagraphStyle;kotlin.Float){}[0] final fun androidx.compose.ui.text/lerp(androidx.compose.ui.text/PlatformParagraphStyle, androidx.compose.ui.text/PlatformParagraphStyle, kotlin/Float): androidx.compose.ui.text/PlatformParagraphStyle // androidx.compose.ui.text/lerp|lerp(androidx.compose.ui.text.PlatformParagraphStyle;androidx.compose.ui.text.PlatformParagraphStyle;kotlin.Float){}[0] final fun androidx.compose.ui.text/lerp(androidx.compose.ui.text/PlatformSpanStyle, androidx.compose.ui.text/PlatformSpanStyle, kotlin/Float): androidx.compose.ui.text/PlatformSpanStyle // androidx.compose.ui.text/lerp|lerp(androidx.compose.ui.text.PlatformSpanStyle;androidx.compose.ui.text.PlatformSpanStyle;kotlin.Float){}[0]
diff --git a/compose/ui/ui-unit/bcv/native/current.txt b/compose/ui/ui-unit/bcv/native/current.txt index bbd3085..b453a91 100644 --- a/compose/ui/ui-unit/bcv/native/current.txt +++ b/compose/ui/ui-unit/bcv/native/current.txt
@@ -391,6 +391,8 @@ final const val androidx.compose.ui.unit/MaxDimensionsAndFocusMask // androidx.compose.ui.unit/MaxDimensionsAndFocusMask|{}MaxDimensionsAndFocusMask[0] final fun <get-MaxDimensionsAndFocusMask>(): kotlin/Long // androidx.compose.ui.unit/MaxDimensionsAndFocusMask.<get-MaxDimensionsAndFocusMask>|<get-MaxDimensionsAndFocusMask>(){}[0] +final val androidx.compose.ui.unit/androidx_compose_ui_unit_DpRect$stableprop // androidx.compose.ui.unit/androidx_compose_ui_unit_DpRect$stableprop|#static{}androidx_compose_ui_unit_DpRect$stableprop[0] +final val androidx.compose.ui.unit/androidx_compose_ui_unit_IntRect$stableprop // androidx.compose.ui.unit/androidx_compose_ui_unit_IntRect$stableprop|#static{}androidx_compose_ui_unit_IntRect$stableprop[0] final val androidx.compose.ui.unit/center // androidx.compose.ui.unit/center|@androidx.compose.ui.unit.DpSize{}center[0] final fun (androidx.compose.ui.unit/DpSize).<get-center>(): androidx.compose.ui.unit/DpOffset // androidx.compose.ui.unit/center.<get-center>|<get-center>@androidx.compose.ui.unit.DpSize(){}[0] final val androidx.compose.ui.unit/center // androidx.compose.ui.unit/center|@androidx.compose.ui.unit.IntSize{}center[0] @@ -463,6 +465,8 @@ final fun androidx.compose.ui.unit/IntRect(androidx.compose.ui.unit/IntOffset, kotlin/Int): androidx.compose.ui.unit/IntRect // androidx.compose.ui.unit/IntRect|IntRect(androidx.compose.ui.unit.IntOffset;kotlin.Int){}[0] final fun androidx.compose.ui.unit/TextUnit(kotlin/Float, androidx.compose.ui.unit/TextUnitType): androidx.compose.ui.unit/TextUnit // androidx.compose.ui.unit/TextUnit|TextUnit(kotlin.Float;androidx.compose.ui.unit.TextUnitType){}[0] final fun androidx.compose.ui.unit/Velocity(kotlin/Float, kotlin/Float): androidx.compose.ui.unit/Velocity // androidx.compose.ui.unit/Velocity|Velocity(kotlin.Float;kotlin.Float){}[0] +final fun androidx.compose.ui.unit/androidx_compose_ui_unit_DpRect$stableprop_getter(): kotlin/Int // androidx.compose.ui.unit/androidx_compose_ui_unit_DpRect$stableprop_getter|androidx_compose_ui_unit_DpRect$stableprop_getter(){}[0] +final fun androidx.compose.ui.unit/androidx_compose_ui_unit_IntRect$stableprop_getter(): kotlin/Int // androidx.compose.ui.unit/androidx_compose_ui_unit_IntRect$stableprop_getter|androidx_compose_ui_unit_IntRect$stableprop_getter(){}[0] final fun androidx.compose.ui.unit/checkArithmetic(androidx.compose.ui.unit/TextUnit) // androidx.compose.ui.unit/checkArithmetic|checkArithmetic(androidx.compose.ui.unit.TextUnit){}[0] final fun androidx.compose.ui.unit/checkArithmetic(androidx.compose.ui.unit/TextUnit, androidx.compose.ui.unit/TextUnit) // androidx.compose.ui.unit/checkArithmetic|checkArithmetic(androidx.compose.ui.unit.TextUnit;androidx.compose.ui.unit.TextUnit){}[0] final fun androidx.compose.ui.unit/checkArithmetic(androidx.compose.ui.unit/TextUnit, androidx.compose.ui.unit/TextUnit, androidx.compose.ui.unit/TextUnit) // androidx.compose.ui.unit/checkArithmetic|checkArithmetic(androidx.compose.ui.unit.TextUnit;androidx.compose.ui.unit.TextUnit;androidx.compose.ui.unit.TextUnit){}[0]
diff --git a/compose/ui/ui/bcv/native/current.ignore b/compose/ui/ui/bcv/native/current.ignore index 5035c75..bf048b3 100644 --- a/compose/ui/ui/bcv/native/current.ignore +++ b/compose/ui/ui/bcv/native/current.ignore
@@ -1,2 +1,32 @@ // Baseline format: 1.0 -[linuxX64]: Added declaration plus(androidx.compose.ui.autofill/ContentType) to androidx.compose.ui.autofill/ContentType \ No newline at end of file +[linuxX64]: Removed declaration (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Array<out kotlin/Any?>, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/Group(kotlin/String, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode>, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/Path(kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode>, androidx.compose.ui.graphics/PathFillType, kotlin/String, androidx.compose.ui.graphics/Brush?, kotlin/Float, androidx.compose.ui.graphics/Brush?, kotlin/Float, kotlin/Float, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.graphics/StrokeJoin, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/RenderVectorGroup(androidx.compose.ui.graphics.vector/VectorGroup, kotlin.collections/Map<kotlin/String, androidx.compose.ui.graphics.vector/VectorConfig>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.graphics.vector/ImageVector) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float, kotlin/Float, kotlin/String, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/BlendMode, kotlin/Boolean, kotlin/Function2<kotlin/Float, kotlin/Float, kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float, kotlin/Float, kotlin/String, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/BlendMode, kotlin/Function2<kotlin/Float, kotlin/Float, kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.graphics/rememberGraphicsLayer() from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/LookaheadScope(kotlin/Function1<androidx.compose.ui.layout/LookaheadScope, kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/MultiMeasureLayout(androidx.compose.ui/Modifier, kotlin/Function0<kotlin/Unit>, androidx.compose.ui.layout/MeasurePolicy) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui.layout/SubcomposeLayoutState, androidx.compose.ui/Modifier, kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui/Modifier, kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/TestModifierUpdaterLayout(kotlin/Function1<androidx.compose.ui.layout/TestModifierUpdater, kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/combineAsVirtualLayouts(kotlin.collections/List<kotlin/Function0<kotlin/Unit>>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.text/rememberTextMeasurer(kotlin/Int) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.window/Dialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui.window/DialogProperties, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.window/Popup(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.window/PopupProperties, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.window/Popup(androidx.compose.ui/Alignment, androidx.compose.ui.unit/IntOffset, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.window/PopupProperties, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/Layout(androidx.compose.ui/Modifier, androidx.compose.ui.layout/MeasurePolicy) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/Layout(kotlin.collections/List<kotlin/Function0<kotlin/Unit>>, androidx.compose.ui/Modifier, androidx.compose.ui.layout/MultiContentMeasurePolicy) from androidx.compose.ui:ui +[linuxX64]: Removed declaration androidx.compose.ui.layout/Layout(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier, androidx.compose.ui.layout/MeasurePolicy) from androidx.compose.ui:ui +[linuxX64]: Removed declaration subcompose(kotlin/Any?, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui.layout/SubcomposeMeasureScope +[linuxX64]: Added declaration subcompose(kotlin/Any?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) to androidx.compose.ui.layout/SubcomposeMeasureScope +[linuxX64]: Added declaration plus(androidx.compose.ui.autofill/ContentType) to androidx.compose.ui.autofill/ContentType +[linuxX64]: Removed declaration precompose(kotlin/Any?, kotlin/Function0<kotlin/Unit>) from androidx.compose.ui.layout/SubcomposeLayoutState +[linuxX64]: Return type changed from kotlin/Function1<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, kotlin/Unit> to kotlin/Function3<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> for androidx.compose.ui.layout/materializerOf +[linuxX64]: Return type changed from kotlin/Function1<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, kotlin/Unit> to kotlin/Function3<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> for androidx.compose.ui.layout/materializerOfWithCompositionLocalInjection \ No newline at end of file
diff --git a/compose/ui/ui/bcv/native/current.txt b/compose/ui/ui/bcv/native/current.txt index 6b2ecb0..e6b08af 100644 --- a/compose/ui/ui/bcv/native/current.txt +++ b/compose/ui/ui/bcv/native/current.txt
@@ -720,7 +720,7 @@ } abstract interface androidx.compose.ui.layout/SubcomposeMeasureScope : androidx.compose.ui.layout/MeasureScope { // androidx.compose.ui.layout/SubcomposeMeasureScope|null[0] - abstract fun subcompose(kotlin/Any?, kotlin/Function0<kotlin/Unit>): kotlin.collections/List<androidx.compose.ui.layout/Measurable> // androidx.compose.ui.layout/SubcomposeMeasureScope.subcompose|subcompose(kotlin.Any?;kotlin.Function0<kotlin.Unit>){}[0] + abstract fun subcompose(kotlin/Any?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): kotlin.collections/List<androidx.compose.ui.layout/Measurable> // androidx.compose.ui.layout/SubcomposeMeasureScope.subcompose|subcompose(kotlin.Any?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } abstract interface androidx.compose.ui.layout/SubcomposeSlotReusePolicy { // androidx.compose.ui.layout/SubcomposeSlotReusePolicy|null[0] @@ -1868,8 +1868,8 @@ constructor <init>(androidx.compose.ui.layout/SubcomposeSlotReusePolicy) // androidx.compose.ui.layout/SubcomposeLayoutState.<init>|<init>(androidx.compose.ui.layout.SubcomposeSlotReusePolicy){}[0] constructor <init>(kotlin/Int) // androidx.compose.ui.layout/SubcomposeLayoutState.<init>|<init>(kotlin.Int){}[0] - final fun createPausedPrecomposition(kotlin/Any?, kotlin/Function0<kotlin/Unit>): androidx.compose.ui.layout/SubcomposeLayoutState.PausedPrecomposition // androidx.compose.ui.layout/SubcomposeLayoutState.createPausedPrecomposition|createPausedPrecomposition(kotlin.Any?;kotlin.Function0<kotlin.Unit>){}[0] - final fun precompose(kotlin/Any?, kotlin/Function0<kotlin/Unit>): androidx.compose.ui.layout/SubcomposeLayoutState.PrecomposedSlotHandle // androidx.compose.ui.layout/SubcomposeLayoutState.precompose|precompose(kotlin.Any?;kotlin.Function0<kotlin.Unit>){}[0] + final fun createPausedPrecomposition(kotlin/Any?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): androidx.compose.ui.layout/SubcomposeLayoutState.PausedPrecomposition // androidx.compose.ui.layout/SubcomposeLayoutState.createPausedPrecomposition|createPausedPrecomposition(kotlin.Any?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + final fun precompose(kotlin/Any?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): androidx.compose.ui.layout/SubcomposeLayoutState.PrecomposedSlotHandle // androidx.compose.ui.layout/SubcomposeLayoutState.precompose|precompose(kotlin.Any?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] abstract interface PrecomposedSlotHandle { // androidx.compose.ui.layout/SubcomposeLayoutState.PrecomposedSlotHandle|null[0] open val placeablesCount // androidx.compose.ui.layout/SubcomposeLayoutState.PrecomposedSlotHandle.placeablesCount|{}placeablesCount[0] @@ -3499,6 +3499,36 @@ final const val androidx.compose.ui.graphics/DefaultCameraDistance // androidx.compose.ui.graphics/DefaultCameraDistance|{}DefaultCameraDistance[0] final fun <get-DefaultCameraDistance>(): kotlin/Float // androidx.compose.ui.graphics/DefaultCameraDistance.<get-DefaultCameraDistance>|<get-DefaultCameraDistance>(){}[0] +final val androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillManager$stableprop // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillManager$stableprop|#static{}androidx_compose_ui_autofill_AutofillManager$stableprop[0] +final val androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillNode$stableprop // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillNode$stableprop|#static{}androidx_compose_ui_autofill_AutofillNode$stableprop[0] +final val androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillTree$stableprop // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillTree$stableprop|#static{}androidx_compose_ui_autofill_AutofillTree$stableprop[0] +final val androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop|#static{}androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop[0] +final val androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropNode$stableprop // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropNode$stableprop|#static{}androidx_compose_ui_draganddrop_DragAndDropNode$stableprop[0] +final val androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop|#static{}androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowElement$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowElement$stableprop|#static{}androidx_compose_ui_draw_BlockDropShadowElement$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowNode$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowNode$stableprop|#static{}androidx_compose_ui_draw_BlockDropShadowNode$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowElement$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowElement$stableprop|#static{}androidx_compose_ui_draw_BlockInnerShadowElement$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowNode$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowNode$stableprop|#static{}androidx_compose_ui_draw_BlockInnerShadowNode$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_CacheDrawScope$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_CacheDrawScope$stableprop|#static{}androidx_compose_ui_draw_CacheDrawScope$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_DrawBackgroundModifier$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_DrawBackgroundModifier$stableprop|#static{}androidx_compose_ui_draw_DrawBackgroundModifier$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_DrawResult$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_DrawResult$stableprop|#static{}androidx_compose_ui_draw_DrawResult$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop|#static{}androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowElement$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowElement$stableprop|#static{}androidx_compose_ui_draw_SimpleDropShadowElement$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowNode$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowNode$stableprop|#static{}androidx_compose_ui_draw_SimpleDropShadowNode$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop|#static{}androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop[0] +final val androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop|#static{}androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop|#static{}androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusInvalidationManager$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusInvalidationManager$stableprop|#static{}androidx_compose_ui_focus_FocusInvalidationManager$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrder$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrder$stableprop|#static{}androidx_compose_ui_focus_FocusOrder$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrderToProperties$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrderToProperties$stableprop|#static{}androidx_compose_ui_focus_FocusOrderToProperties$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOwnerImpl$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOwnerImpl$stableprop|#static{}androidx_compose_ui_focus_FocusOwnerImpl$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusPropertiesImpl$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusPropertiesImpl$stableprop|#static{}androidx_compose_ui_focus_FocusPropertiesImpl$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester$stableprop|#static{}androidx_compose_ui_focus_FocusRequester$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop|#static{}androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRestorerNode$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRestorerNode$stableprop|#static{}androidx_compose_ui_focus_FocusRestorerNode$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode$stableprop|#static{}androidx_compose_ui_focus_FocusTargetNode$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop|#static{}androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop[0] +final val androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTransactionManager$stableprop // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTransactionManager$stableprop|#static{}androidx_compose_ui_focus_FocusTransactionManager$stableprop[0] final val androidx.compose.ui.graphics.vector/DefaultFillType // androidx.compose.ui.graphics.vector/DefaultFillType|{}DefaultFillType[0] final fun <get-DefaultFillType>(): androidx.compose.ui.graphics/PathFillType // androidx.compose.ui.graphics.vector/DefaultFillType.<get-DefaultFillType>|<get-DefaultFillType>(){}[0] final val androidx.compose.ui.graphics.vector/DefaultStrokeLineCap // androidx.compose.ui.graphics.vector/DefaultStrokeLineCap|{}DefaultStrokeLineCap[0] @@ -3511,8 +3541,42 @@ final fun <get-DefaultTintColor>(): androidx.compose.ui.graphics/Color // androidx.compose.ui.graphics.vector/DefaultTintColor.<get-DefaultTintColor>|<get-DefaultTintColor>(){}[0] final val androidx.compose.ui.graphics.vector/EmptyPath // androidx.compose.ui.graphics.vector/EmptyPath|{}EmptyPath[0] final fun <get-EmptyPath>(): kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode> // androidx.compose.ui.graphics.vector/EmptyPath.<get-EmptyPath>|<get-EmptyPath>(){}[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_DrawCache$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_DrawCache$stableprop|#static{}androidx_compose_ui_graphics_vector_DrawCache$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_GroupComponent$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_GroupComponent$stableprop|#static{}androidx_compose_ui_graphics_vector_GroupComponent$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector$stableprop|#static{}androidx_compose_ui_graphics_vector_ImageVector$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop|#static{}androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_PathComponent$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_PathComponent$stableprop|#static{}androidx_compose_ui_graphics_vector_PathComponent$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VNode$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VNode$stableprop|#static{}androidx_compose_ui_graphics_vector_VNode$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorApplier$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorApplier$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorApplier$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorComponent$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorComponent$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorComponent$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorGroup$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorGroup$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorGroup$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorNode$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorNode$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorNode$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPainter$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPainter$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorPainter$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPath$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPath$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorPath$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop[0] +final val androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop|#static{}androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop[0] final val androidx.compose.ui.graphics/DefaultShadowColor // androidx.compose.ui.graphics/DefaultShadowColor|{}DefaultShadowColor[0] final fun <get-DefaultShadowColor>(): androidx.compose.ui.graphics/Color // androidx.compose.ui.graphics/DefaultShadowColor.<get-DefaultShadowColor>|<get-DefaultShadowColor>(){}[0] +final val androidx.compose.ui.graphics/androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop // androidx.compose.ui.graphics/androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop|#static{}androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop[0] +final val androidx.compose.ui.graphics/androidx_compose_ui_graphics_Fields$stableprop // androidx.compose.ui.graphics/androidx_compose_ui_graphics_Fields$stableprop|#static{}androidx_compose_ui_graphics_Fields$stableprop[0] +final val androidx.compose.ui.graphics/androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop // androidx.compose.ui.graphics/androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop|#static{}androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop[0] +final val androidx.compose.ui.hapticfeedback/androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop // androidx.compose.ui.hapticfeedback/androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop|#static{}androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop[0] +final val androidx.compose.ui.input.key/androidx_compose_ui_input_key_NativeKeyEvent$stableprop // androidx.compose.ui.input.key/androidx_compose_ui_input_key_NativeKeyEvent$stableprop|#static{}androidx_compose_ui_input_key_NativeKeyEvent$stableprop[0] final val androidx.compose.ui.input.key/isAltPressed // androidx.compose.ui.input.key/isAltPressed|@androidx.compose.ui.input.key.KeyEvent{}isAltPressed[0] final fun (androidx.compose.ui.input.key/KeyEvent).<get-isAltPressed>(): kotlin/Boolean // androidx.compose.ui.input.key/isAltPressed.<get-isAltPressed>|<get-isAltPressed>@androidx.compose.ui.input.key.KeyEvent(){}[0] final val androidx.compose.ui.input.key/isCtrlPressed // androidx.compose.ui.input.key/isCtrlPressed|@androidx.compose.ui.input.key.KeyEvent{}isCtrlPressed[0] @@ -3527,6 +3591,34 @@ final fun (androidx.compose.ui.input.key/KeyEvent).<get-type>(): androidx.compose.ui.input.key/KeyEventType // androidx.compose.ui.input.key/type.<get-type>|<get-type>@androidx.compose.ui.input.key.KeyEvent(){}[0] final val androidx.compose.ui.input.key/utf16CodePoint // androidx.compose.ui.input.key/utf16CodePoint|@androidx.compose.ui.input.key.KeyEvent{}utf16CodePoint[0] final fun (androidx.compose.ui.input.key/KeyEvent).<get-utf16CodePoint>(): kotlin/Int // androidx.compose.ui.input.key/utf16CodePoint.<get-utf16CodePoint>|<get-utf16CodePoint>@androidx.compose.ui.input.key.KeyEvent(){}[0] +final val androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop // androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop|#static{}androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop[0] +final val androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop // androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop|#static{}androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop[0] +final val androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop|#static{}androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop[0] +final val androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop|#static{}androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop[0] +final val androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop|#static{}androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop[0] +final val androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop|#static{}androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop|#static{}androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_ConsumedData$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_ConsumedData$stableprop|#static{}androidx_compose_ui_input_pointer_ConsumedData$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HistoricalChange$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HistoricalChange$stableprop|#static{}androidx_compose_ui_input_pointer_HistoricalChange$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HitPathTracker$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HitPathTracker$stableprop|#static{}androidx_compose_ui_input_pointer_HitPathTracker$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop|#static{}androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop|#static{}androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_Node$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_Node$stableprop|#static{}androidx_compose_ui_input_pointer_Node$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_NodeParent$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_NodeParent$stableprop|#static{}androidx_compose_ui_input_pointer_NodeParent$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEvent$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEvent$stableprop|#static{}androidx_compose_ui_input_pointer_PointerEvent$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop|#static{}androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop|#static{}androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop|#static{}androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputChange$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputChange$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputChange$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEvent$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEvent$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputEvent$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventData$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventData$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputEventData$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputFilter$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputFilter$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputFilter$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputResetException$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputResetException$stableprop|#static{}androidx_compose_ui_input_pointer_PointerInputResetException$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop|#static{}androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop|#static{}androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop|#static{}androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop[0] +final val androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop|#static{}androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop[0] final val androidx.compose.ui.input.pointer/areAnyPressed // androidx.compose.ui.input.pointer/areAnyPressed|@androidx.compose.ui.input.pointer.PointerButtons{}areAnyPressed[0] final fun (androidx.compose.ui.input.pointer/PointerButtons).<get-areAnyPressed>(): kotlin/Boolean // androidx.compose.ui.input.pointer/areAnyPressed.<get-areAnyPressed>|<get-areAnyPressed>@androidx.compose.ui.input.pointer.PointerButtons(){}[0] final val androidx.compose.ui.input.pointer/isAltGraphPressed // androidx.compose.ui.input.pointer/isAltGraphPressed|@androidx.compose.ui.input.pointer.PointerKeyboardModifiers{}isAltGraphPressed[0] @@ -3559,6 +3651,9 @@ final fun (androidx.compose.ui.input.pointer/PointerKeyboardModifiers).<get-isSymPressed>(): kotlin/Boolean // androidx.compose.ui.input.pointer/isSymPressed.<get-isSymPressed>|<get-isSymPressed>@androidx.compose.ui.input.pointer.PointerKeyboardModifiers(){}[0] final val androidx.compose.ui.input.pointer/isTertiaryPressed // androidx.compose.ui.input.pointer/isTertiaryPressed|@androidx.compose.ui.input.pointer.PointerButtons{}isTertiaryPressed[0] final fun (androidx.compose.ui.input.pointer/PointerButtons).<get-isTertiaryPressed>(): kotlin/Boolean // androidx.compose.ui.input.pointer/isTertiaryPressed.<get-isTertiaryPressed>|<get-isTertiaryPressed>@androidx.compose.ui.input.pointer.PointerButtons(){}[0] +final val androidx.compose.ui.input.rotary/androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop // androidx.compose.ui.input.rotary/androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop|#static{}androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop[0] +final val androidx.compose.ui.input/androidx_compose_ui_input_InputModeManagerImpl$stableprop // androidx.compose.ui.input/androidx_compose_ui_input_InputModeManagerImpl$stableprop|#static{}androidx_compose_ui_input_InputModeManagerImpl$stableprop[0] +final val androidx.compose.ui.internal/androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop // androidx.compose.ui.internal/androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop|#static{}androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop[0] final val androidx.compose.ui.layout/FirstBaseline // androidx.compose.ui.layout/FirstBaseline|{}FirstBaseline[0] final fun <get-FirstBaseline>(): androidx.compose.ui.layout/HorizontalAlignmentLine // androidx.compose.ui.layout/FirstBaseline.<get-FirstBaseline>|<get-FirstBaseline>(){}[0] final val androidx.compose.ui.layout/LastBaseline // androidx.compose.ui.layout/LastBaseline|{}LastBaseline[0] @@ -3567,12 +3662,85 @@ final fun <get-LocalPinnableContainer>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.layout/PinnableContainer?> // androidx.compose.ui.layout/LocalPinnableContainer.<get-LocalPinnableContainer>|<get-LocalPinnableContainer>(){}[0] final val androidx.compose.ui.layout/ModifierLocalBeyondBoundsLayout // androidx.compose.ui.layout/ModifierLocalBeyondBoundsLayout|{}ModifierLocalBeyondBoundsLayout[0] final fun <get-ModifierLocalBeyondBoundsLayout>(): androidx.compose.ui.modifier/ProvidableModifierLocal<androidx.compose.ui.layout/BeyondBoundsLayout?> // androidx.compose.ui.layout/ModifierLocalBeyondBoundsLayout.<get-ModifierLocalBeyondBoundsLayout>|<get-ModifierLocalBeyondBoundsLayout>(){}[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_AlignmentLine$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_AlignmentLine$stableprop|#static{}androidx_compose_ui_layout_AlignmentLine$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop|#static{}androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop|#static{}androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop|#static{}androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_FixedScale$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_FixedScale$stableprop|#static{}androidx_compose_ui_layout_FixedScale$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop|#static{}androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalRuler$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalRuler$stableprop|#static{}androidx_compose_ui_layout_HorizontalRuler$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop|#static{}androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsElement$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsElement$stableprop|#static{}androidx_compose_ui_layout_LayoutBoundsElement$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsHolder$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsHolder$stableprop|#static{}androidx_compose_ui_layout_LayoutBoundsHolder$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsNode$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsNode$stableprop|#static{}androidx_compose_ui_layout_LayoutBoundsNode$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutIdModifier$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutIdModifier$stableprop|#static{}androidx_compose_ui_layout_LayoutIdModifier$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutModifierImpl$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutModifierImpl$stableprop|#static{}androidx_compose_ui_layout_LayoutModifierImpl$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop|#static{}androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop|#static{}androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadScopeImpl$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadScopeImpl$stableprop|#static{}androidx_compose_ui_layout_LookaheadScopeImpl$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_ModifierInfo$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_ModifierInfo$stableprop|#static{}androidx_compose_ui_layout_ModifierInfo$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop|#static{}androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop|#static{}androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop|#static{}androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable$stableprop|#static{}androidx_compose_ui_layout_Placeable$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable_PlacementScope$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable_PlacementScope$stableprop|#static{}androidx_compose_ui_layout_Placeable_PlacementScope$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_RootMeasurePolicy$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_RootMeasurePolicy$stableprop|#static{}androidx_compose_ui_layout_RootMeasurePolicy$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_Ruler$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_Ruler$stableprop|#static{}androidx_compose_ui_layout_Ruler$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeLayoutState$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeLayoutState$stableprop|#static{}androidx_compose_ui_layout_SubcomposeLayoutState$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop|#static{}androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_TestModifierUpdater$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_TestModifierUpdater$stableprop|#static{}androidx_compose_ui_layout_TestModifierUpdater$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalAlignmentLine$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalAlignmentLine$stableprop|#static{}androidx_compose_ui_layout_VerticalAlignmentLine$stableprop[0] +final val androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalRuler$stableprop // androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalRuler$stableprop|#static{}androidx_compose_ui_layout_VerticalRuler$stableprop[0] final val androidx.compose.ui.layout/isSpecified // androidx.compose.ui.layout/isSpecified|@androidx.compose.ui.layout.ScaleFactor{}isSpecified[0] final inline fun (androidx.compose.ui.layout/ScaleFactor).<get-isSpecified>(): kotlin/Boolean // androidx.compose.ui.layout/isSpecified.<get-isSpecified>|<get-isSpecified>@androidx.compose.ui.layout.ScaleFactor(){}[0] final val androidx.compose.ui.layout/isUnspecified // androidx.compose.ui.layout/isUnspecified|@androidx.compose.ui.layout.ScaleFactor{}isUnspecified[0] final inline fun (androidx.compose.ui.layout/ScaleFactor).<get-isUnspecified>(): kotlin/Boolean // androidx.compose.ui.layout/isUnspecified.<get-isUnspecified>|<get-isUnspecified>@androidx.compose.ui.layout.ScaleFactor(){}[0] final val androidx.compose.ui.layout/layoutId // androidx.compose.ui.layout/layoutId|@androidx.compose.ui.layout.Measurable{}layoutId[0] final fun (androidx.compose.ui.layout/Measurable).<get-layoutId>(): kotlin/Any? // androidx.compose.ui.layout/layoutId.<get-layoutId>|<get-layoutId>@androidx.compose.ui.layout.Measurable(){}[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop|#static{}androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_EmptyMap$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_EmptyMap$stableprop|#static{}androidx_compose_ui_modifier_EmptyMap$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocal$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocal$stableprop|#static{}androidx_compose_ui_modifier_ModifierLocal$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalManager$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalManager$stableprop|#static{}androidx_compose_ui_modifier_ModifierLocalManager$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalMap$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalMap$stableprop|#static{}androidx_compose_ui_modifier_ModifierLocalMap$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_MultiLocalMap$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_MultiLocalMap$stableprop|#static{}androidx_compose_ui_modifier_MultiLocalMap$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop|#static{}androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop[0] +final val androidx.compose.ui.modifier/androidx_compose_ui_modifier_SingleLocalMap$stableprop // androidx.compose.ui.modifier/androidx_compose_ui_modifier_SingleLocalMap$stableprop|#static{}androidx_compose_ui_modifier_SingleLocalMap$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_AlignmentLines$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_AlignmentLines$stableprop|#static{}androidx_compose_ui_node_AlignmentLines$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_BackwardsCompatNode$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_BackwardsCompatNode$stableprop|#static{}androidx_compose_ui_node_BackwardsCompatNode$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_DelegatingNode$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_DelegatingNode$stableprop|#static{}androidx_compose_ui_node_DelegatingNode$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSet$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSet$stableprop|#static{}androidx_compose_ui_node_DepthSortedSet$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop|#static{}androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop|#static{}androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_HitTestResult$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_HitTestResult$stableprop|#static{}androidx_compose_ui_node_HitTestResult$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_InnerNodeCoordinator$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_InnerNodeCoordinator$stableprop|#static{}androidx_compose_ui_node_InnerNodeCoordinator$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_IntrinsicsPolicy$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_IntrinsicsPolicy$stableprop|#static{}androidx_compose_ui_node_IntrinsicsPolicy$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop|#static{}androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode$stableprop|#static{}androidx_compose_ui_node_LayoutNode$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop|#static{}androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeDrawScope$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeDrawScope$stableprop|#static{}androidx_compose_ui_node_LayoutNodeDrawScope$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop|#static{}androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop|#static{}androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop|#static{}androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LookaheadAlignmentLines$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadAlignmentLines$stableprop|#static{}androidx_compose_ui_node_LookaheadAlignmentLines$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop|#static{}androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LookaheadDelegate$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadDelegate$stableprop|#static{}androidx_compose_ui_node_LookaheadDelegate$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_LookaheadPassDelegate$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadPassDelegate$stableprop|#static{}androidx_compose_ui_node_LookaheadPassDelegate$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop|#static{}androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop|#static{}androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_MeasurePassDelegate$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_MeasurePassDelegate$stableprop|#static{}androidx_compose_ui_node_MeasurePassDelegate$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_ModifierNodeElement$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_ModifierNodeElement$stableprop|#static{}androidx_compose_ui_node_ModifierNodeElement$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop|#static{}androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_NodeChain$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_NodeChain$stableprop|#static{}androidx_compose_ui_node_NodeChain$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_NodeCoordinator$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_NodeCoordinator$stableprop|#static{}androidx_compose_ui_node_NodeCoordinator$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop|#static{}androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_Nodes$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_Nodes$stableprop|#static{}androidx_compose_ui_node_Nodes$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop|#static{}androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_OnPositionedDispatcher$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_OnPositionedDispatcher$stableprop|#static{}androidx_compose_ui_node_OnPositionedDispatcher$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_OwnerSnapshotObserver$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_OwnerSnapshotObserver$stableprop|#static{}androidx_compose_ui_node_OwnerSnapshotObserver$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_Ref$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_Ref$stableprop|#static{}androidx_compose_ui_node_Ref$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_SortedSet$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_SortedSet$stableprop|#static{}androidx_compose_ui_node_SortedSet$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_TailModifierNode$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_TailModifierNode$stableprop|#static{}androidx_compose_ui_node_TailModifierNode$stableprop[0] +final val androidx.compose.ui.node/androidx_compose_ui_node_WeakReference$stableprop // androidx.compose.ui.node/androidx_compose_ui_node_WeakReference$stableprop|#static{}androidx_compose_ui_node_WeakReference$stableprop[0] final val androidx.compose.ui.platform/LocalAccessibilityManager // androidx.compose.ui.platform/LocalAccessibilityManager|{}LocalAccessibilityManager[0] final fun <get-LocalAccessibilityManager>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.platform/AccessibilityManager?> // androidx.compose.ui.platform/LocalAccessibilityManager.<get-LocalAccessibilityManager>|<get-LocalAccessibilityManager>(){}[0] final val androidx.compose.ui.platform/LocalAutofill // androidx.compose.ui.platform/LocalAutofill|{}LocalAutofill[0] @@ -3623,6 +3791,59 @@ final fun <get-LocalWindowInfo>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.ui.platform/WindowInfo> // androidx.compose.ui.platform/LocalWindowInfo.<get-LocalWindowInfo>|<get-LocalWindowInfo>(){}[0] final val androidx.compose.ui.platform/NoInspectorInfo // androidx.compose.ui.platform/NoInspectorInfo|{}NoInspectorInfo[0] final fun <get-NoInspectorInfo>(): kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> // androidx.compose.ui.platform/NoInspectorInfo.<get-NoInspectorInfo>|<get-NoInspectorInfo>(){}[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_AtomicInt$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_AtomicInt$stableprop|#static{}androidx_compose_ui_platform_AtomicInt$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_ClipEntry$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_ClipEntry$stableprop|#static{}androidx_compose_ui_platform_ClipEntry$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_ClipMetadata$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_ClipMetadata$stableprop|#static{}androidx_compose_ui_platform_ClipMetadata$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop|#static{}androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_InspectableModifier$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectableModifier$stableprop|#static{}androidx_compose_ui_platform_InspectableModifier$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorInfo$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorInfo$stableprop|#static{}androidx_compose_ui_platform_InspectorInfo$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorValueInfo$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorValueInfo$stableprop|#static{}androidx_compose_ui_platform_InspectorValueInfo$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_NativeClipboard$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_NativeClipboard$stableprop|#static{}androidx_compose_ui_platform_NativeClipboard$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_SynchronizedObject$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_SynchronizedObject$stableprop|#static{}androidx_compose_ui_platform_SynchronizedObject$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElement$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElement$stableprop|#static{}androidx_compose_ui_platform_ValueElement$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElementSequence$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElementSequence$stableprop|#static{}androidx_compose_ui_platform_ValueElementSequence$stableprop[0] +final val androidx.compose.ui.platform/androidx_compose_ui_platform_WindowInfoImpl$stableprop // androidx.compose.ui.platform/androidx_compose_ui_platform_WindowInfoImpl$stableprop|#static{}androidx_compose_ui_platform_WindowInfoImpl$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_AccessibilityAction$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_AccessibilityAction$stableprop|#static{}androidx_compose_ui_semantics_AccessibilityAction$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop|#static{}androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop|#static{}androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionInfo$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionInfo$stableprop|#static{}androidx_compose_ui_semantics_CollectionInfo$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionItemInfo$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionItemInfo$stableprop|#static{}androidx_compose_ui_semantics_CollectionItemInfo$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop|#static{}androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop|#static{}androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop|#static{}androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop|#static{}androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_ScrollAxisRange$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ScrollAxisRange$stableprop|#static{}androidx_compose_ui_semantics_ScrollAxisRange$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsActions$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsActions$stableprop|#static{}androidx_compose_ui_semantics_SemanticsActions$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsConfiguration$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsConfiguration$stableprop|#static{}androidx_compose_ui_semantics_SemanticsConfiguration$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNode$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNode$stableprop|#static{}androidx_compose_ui_semantics_SemanticsNode$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop|#static{}androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsOwner$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsOwner$stableprop|#static{}androidx_compose_ui_semantics_SemanticsOwner$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsProperties$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsProperties$stableprop|#static{}androidx_compose_ui_semantics_SemanticsProperties$stableprop[0] +final val androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop|#static{}androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop[0] +final val androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectList$stableprop // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectList$stableprop|#static{}androidx_compose_ui_spatial_RectList$stableprop[0] +final val androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectManager$stableprop // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectManager$stableprop|#static{}androidx_compose_ui_spatial_RectManager$stableprop[0] +final val androidx.compose.ui.spatial/androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop|#static{}androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop[0] +final val androidx.compose.ui.spatial/androidx_compose_ui_spatial_ThrottledCallbacks$stableprop // androidx.compose.ui.spatial/androidx_compose_ui_spatial_ThrottledCallbacks$stableprop|#static{}androidx_compose_ui_spatial_ThrottledCallbacks$stableprop[0] +final val androidx.compose.ui.viewinterop/androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop // androidx.compose.ui.viewinterop/androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop|#static{}androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop[0] +final val androidx.compose.ui.window/androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop // androidx.compose.ui.window/androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop|#static{}androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop[0] +final val androidx.compose.ui.window/androidx_compose_ui_window_DialogProperties$stableprop // androidx.compose.ui.window/androidx_compose_ui_window_DialogProperties$stableprop|#static{}androidx_compose_ui_window_DialogProperties$stableprop[0] +final val androidx.compose.ui.window/androidx_compose_ui_window_PopupProperties$stableprop // androidx.compose.ui.window/androidx_compose_ui_window_PopupProperties$stableprop|#static{}androidx_compose_ui_window_PopupProperties$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_AbsoluteAlignment$stableprop // androidx.compose.ui/androidx_compose_ui_AbsoluteAlignment$stableprop|#static{}androidx_compose_ui_AbsoluteAlignment$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_AtomicReference$stableprop // androidx.compose.ui/androidx_compose_ui_AtomicReference$stableprop|#static{}androidx_compose_ui_AtomicReference$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment$stableprop // androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment$stableprop|#static{}androidx_compose_ui_BiasAbsoluteAlignment$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop // androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop|#static{}androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_BiasAlignment$stableprop // androidx.compose.ui/androidx_compose_ui_BiasAlignment$stableprop|#static{}androidx_compose_ui_BiasAlignment$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_BiasAlignment_Horizontal$stableprop // androidx.compose.ui/androidx_compose_ui_BiasAlignment_Horizontal$stableprop|#static{}androidx_compose_ui_BiasAlignment_Horizontal$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_BiasAlignment_Vertical$stableprop // androidx.compose.ui/androidx_compose_ui_BiasAlignment_Vertical$stableprop|#static{}androidx_compose_ui_BiasAlignment_Vertical$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_CombinedModifier$stableprop // androidx.compose.ui/androidx_compose_ui_CombinedModifier$stableprop|#static{}androidx_compose_ui_CombinedModifier$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_ComposeUiFlags$stableprop // androidx.compose.ui/androidx_compose_ui_ComposeUiFlags$stableprop|#static{}androidx_compose_ui_ComposeUiFlags$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop // androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop|#static{}androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop // androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop|#static{}androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_FrameRateModifierNode$stableprop // androidx.compose.ui/androidx_compose_ui_FrameRateModifierNode$stableprop|#static{}androidx_compose_ui_FrameRateModifierNode$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop // androidx.compose.ui/androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop|#static{}androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_Modifier_Node$stableprop // androidx.compose.ui/androidx_compose_ui_Modifier_Node$stableprop|#static{}androidx_compose_ui_Modifier_Node$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_ZIndexElement$stableprop // androidx.compose.ui/androidx_compose_ui_ZIndexElement$stableprop|#static{}androidx_compose_ui_ZIndexElement$stableprop[0] +final val androidx.compose.ui/androidx_compose_ui_ZIndexNode$stableprop // androidx.compose.ui/androidx_compose_ui_ZIndexNode$stableprop|#static{}androidx_compose_ui_ZIndexNode$stableprop[0] final var androidx.compose.ui.platform/isDebugInspectorInfoEnabled // androidx.compose.ui.platform/isDebugInspectorInfoEnabled|{}isDebugInspectorInfoEnabled[0] final fun <get-isDebugInspectorInfoEnabled>(): kotlin/Boolean // androidx.compose.ui.platform/isDebugInspectorInfoEnabled.<get-isDebugInspectorInfoEnabled>|<get-isDebugInspectorInfoEnabled>(){}[0] @@ -3892,11 +4113,11 @@ final fun (androidx.compose.ui/Modifier).androidx.compose.ui.platform/testTag(kotlin/String): androidx.compose.ui/Modifier // androidx.compose.ui.platform/testTag|testTag@androidx.compose.ui.Modifier(kotlin.String){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.ui.semantics/clearAndSetSemantics(kotlin/Function1<androidx.compose.ui.semantics/SemanticsPropertyReceiver, kotlin/Unit>): androidx.compose.ui/Modifier // androidx.compose.ui.semantics/clearAndSetSemantics|clearAndSetSemantics@androidx.compose.ui.Modifier(kotlin.Function1<androidx.compose.ui.semantics.SemanticsPropertyReceiver,kotlin.Unit>){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.ui.semantics/semantics(kotlin/Boolean = ..., kotlin/Function1<androidx.compose.ui.semantics/SemanticsPropertyReceiver, kotlin/Unit>): androidx.compose.ui/Modifier // androidx.compose.ui.semantics/semantics|semantics@androidx.compose.ui.Modifier(kotlin.Boolean;kotlin.Function1<androidx.compose.ui.semantics.SemanticsPropertyReceiver,kotlin.Unit>){}[0] -final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] -final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] -final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] -final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] -final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Array<out kotlin/Any?>..., kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Array<out|kotlin.Any?>...;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] +final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function3<androidx.compose.ui/Modifier, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function3<androidx.compose.ui.Modifier,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.Modifier>){}[0] +final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function3<androidx.compose.ui/Modifier, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function3<androidx.compose.ui.Modifier,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.Modifier>){}[0] +final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function3<androidx.compose.ui/Modifier, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function3<androidx.compose.ui.Modifier,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.Modifier>){}[0] +final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Any?, kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function3<androidx.compose.ui/Modifier, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Any?;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function3<androidx.compose.ui.Modifier,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.Modifier>){}[0] +final fun (androidx.compose.ui/Modifier).androidx.compose.ui/composed(kotlin/String, kotlin/Array<out kotlin/Any?>..., kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> = ..., kotlin/Function3<androidx.compose.ui/Modifier, androidx.compose.runtime/Composer, kotlin/Int, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui/composed|composed@androidx.compose.ui.Modifier(kotlin.String;kotlin.Array<out|kotlin.Any?>...;kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function3<androidx.compose.ui.Modifier,androidx.compose.runtime.Composer,kotlin.Int,androidx.compose.ui.Modifier>){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.ui/keepScreenOn(): androidx.compose.ui/Modifier // androidx.compose.ui/keepScreenOn|keepScreenOn@androidx.compose.ui.Modifier(){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.ui/preferredFrameRate(androidx.compose.ui/FrameRateCategory): androidx.compose.ui/Modifier // androidx.compose.ui/preferredFrameRate|preferredFrameRate@androidx.compose.ui.Modifier(androidx.compose.ui.FrameRateCategory){}[0] final fun (androidx.compose.ui/Modifier).androidx.compose.ui/preferredFrameRate(kotlin/Float): androidx.compose.ui/Modifier // androidx.compose.ui/preferredFrameRate|preferredFrameRate@androidx.compose.ui.Modifier(kotlin.Float){}[0] @@ -3913,38 +4134,170 @@ final fun <#A: kotlin/Any?> androidx.compose.ui.modifier/modifierLocalMapOf(androidx.compose.ui.modifier/ModifierLocal<#A>): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(androidx.compose.ui.modifier.ModifierLocal<0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.ui.modifier/modifierLocalMapOf(kotlin/Pair<androidx.compose.ui.modifier/ModifierLocal<#A>, #A>): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(kotlin.Pair<androidx.compose.ui.modifier.ModifierLocal<0:0>,0:0>){0§<kotlin.Any?>}[0] final fun <#A: kotlin/Any?> androidx.compose.ui.modifier/modifierLocalOf(kotlin/Function0<#A>): androidx.compose.ui.modifier/ProvidableModifierLocal<#A> // androidx.compose.ui.modifier/modifierLocalOf|modifierLocalOf(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0] +final fun androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillManager$stableprop_getter(): kotlin/Int // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillManager$stableprop_getter|androidx_compose_ui_autofill_AutofillManager$stableprop_getter(){}[0] +final fun androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillNode$stableprop_getter|androidx_compose_ui_autofill_AutofillNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillTree$stableprop_getter(): kotlin/Int // androidx.compose.ui.autofill/androidx_compose_ui_autofill_AutofillTree$stableprop_getter|androidx_compose_ui_autofill_AutofillTree$stableprop_getter(){}[0] final fun androidx.compose.ui.draganddrop/DragAndDropModifierNode(): androidx.compose.ui.draganddrop/DragAndDropModifierNode // androidx.compose.ui.draganddrop/DragAndDropModifierNode|DragAndDropModifierNode(){}[0] final fun androidx.compose.ui.draganddrop/DragAndDropModifierNode(kotlin/Function1<androidx.compose.ui.draganddrop/DragAndDropEvent, kotlin/Boolean>, androidx.compose.ui.draganddrop/DragAndDropTarget): androidx.compose.ui.draganddrop/DragAndDropModifierNode // androidx.compose.ui.draganddrop/DragAndDropModifierNode|DragAndDropModifierNode(kotlin.Function1<androidx.compose.ui.draganddrop.DragAndDropEvent,kotlin.Boolean>;androidx.compose.ui.draganddrop.DragAndDropTarget){}[0] final fun androidx.compose.ui.draganddrop/DragAndDropSourceModifierNode(kotlin/Function2<androidx.compose.ui.draganddrop/DragAndDropStartTransferScope, androidx.compose.ui.geometry/Offset, kotlin/Unit>): androidx.compose.ui.draganddrop/DragAndDropSourceModifierNode // androidx.compose.ui.draganddrop/DragAndDropSourceModifierNode|DragAndDropSourceModifierNode(kotlin.Function2<androidx.compose.ui.draganddrop.DragAndDropStartTransferScope,androidx.compose.ui.geometry.Offset,kotlin.Unit>){}[0] final fun androidx.compose.ui.draganddrop/DragAndDropTargetModifierNode(kotlin/Function1<androidx.compose.ui.draganddrop/DragAndDropEvent, kotlin/Boolean>, androidx.compose.ui.draganddrop/DragAndDropTarget): androidx.compose.ui.draganddrop/DragAndDropTargetModifierNode // androidx.compose.ui.draganddrop/DragAndDropTargetModifierNode|DragAndDropTargetModifierNode(kotlin.Function1<androidx.compose.ui.draganddrop.DragAndDropEvent,kotlin.Boolean>;androidx.compose.ui.draganddrop.DragAndDropTarget){}[0] +final fun androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop_getter|androidx_compose_ui_draganddrop_DragAndDropEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropNode$stableprop_getter|androidx_compose_ui_draganddrop_DragAndDropNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop_getter(): kotlin/Int // androidx.compose.ui.draganddrop/androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop_getter|androidx_compose_ui_draganddrop_DragAndDropTransferData$stableprop_getter(){}[0] final fun androidx.compose.ui.draw/CacheDrawModifierNode(kotlin/Function1<androidx.compose.ui.draw/CacheDrawScope, androidx.compose.ui.draw/DrawResult>): androidx.compose.ui.draw/CacheDrawModifierNode // androidx.compose.ui.draw/CacheDrawModifierNode|CacheDrawModifierNode(kotlin.Function1<androidx.compose.ui.draw.CacheDrawScope,androidx.compose.ui.draw.DrawResult>){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowElement$stableprop_getter|androidx_compose_ui_draw_BlockDropShadowElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockDropShadowNode$stableprop_getter|androidx_compose_ui_draw_BlockDropShadowNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowElement$stableprop_getter|androidx_compose_ui_draw_BlockInnerShadowElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_BlockInnerShadowNode$stableprop_getter|androidx_compose_ui_draw_BlockInnerShadowNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_CacheDrawScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_CacheDrawScope$stableprop_getter|androidx_compose_ui_draw_CacheDrawScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_DrawBackgroundModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_DrawBackgroundModifier$stableprop_getter|androidx_compose_ui_draw_DrawBackgroundModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_DrawResult$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_DrawResult$stableprop_getter|androidx_compose_ui_draw_DrawResult$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop_getter|androidx_compose_ui_draw_ShadowGraphicsLayerElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowElement$stableprop_getter|androidx_compose_ui_draw_SimpleDropShadowElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleDropShadowNode$stableprop_getter|androidx_compose_ui_draw_SimpleDropShadowNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop_getter|androidx_compose_ui_draw_SimpleInnerShadowElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.draw/androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop_getter|androidx_compose_ui_draw_SimpleInnerShadowNode$stableprop_getter(){}[0] final fun androidx.compose.ui.focus/FocusTargetModifierNode(): androidx.compose.ui.focus/FocusTargetModifierNode // androidx.compose.ui.focus/FocusTargetModifierNode|FocusTargetModifierNode(){}[0] final fun androidx.compose.ui.focus/FocusTargetModifierNode(androidx.compose.ui.focus/Focusability = ..., kotlin/Function2<androidx.compose.ui.focus/FocusState, androidx.compose.ui.focus/FocusState, kotlin/Unit>? = ...): androidx.compose.ui.focus/FocusTargetModifierNode // androidx.compose.ui.focus/FocusTargetModifierNode|FocusTargetModifierNode(androidx.compose.ui.focus.Focusability;kotlin.Function2<androidx.compose.ui.focus.FocusState,androidx.compose.ui.focus.FocusState,kotlin.Unit>?){}[0] -final fun androidx.compose.ui.graphics.vector/Group(kotlin/String = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode> = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.graphics.vector/Group|Group(kotlin.String;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.collections.List<androidx.compose.ui.graphics.vector.PathNode>;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.ui.graphics.vector/Path(kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode>, androidx.compose.ui.graphics/PathFillType = ..., kotlin/String = ..., androidx.compose.ui.graphics/Brush? = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Brush? = ..., kotlin/Float = ..., kotlin/Float = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.graphics/StrokeJoin = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ...) // androidx.compose.ui.graphics.vector/Path|Path(kotlin.collections.List<androidx.compose.ui.graphics.vector.PathNode>;androidx.compose.ui.graphics.PathFillType;kotlin.String;androidx.compose.ui.graphics.Brush?;kotlin.Float;androidx.compose.ui.graphics.Brush?;kotlin.Float;kotlin.Float;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.graphics.StrokeJoin;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.ui.graphics.vector/RenderVectorGroup(androidx.compose.ui.graphics.vector/VectorGroup, kotlin.collections/Map<kotlin/String, androidx.compose.ui.graphics.vector/VectorConfig> = ...) // androidx.compose.ui.graphics.vector/RenderVectorGroup|RenderVectorGroup(androidx.compose.ui.graphics.vector.VectorGroup;kotlin.collections.Map<kotlin.String,androidx.compose.ui.graphics.vector.VectorConfig>){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop_getter|androidx_compose_ui_focus_CancelIndicatingFocusBoundaryScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusInvalidationManager$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusInvalidationManager$stableprop_getter|androidx_compose_ui_focus_FocusInvalidationManager$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrder$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrder$stableprop_getter|androidx_compose_ui_focus_FocusOrder$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrderToProperties$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOrderToProperties$stableprop_getter|androidx_compose_ui_focus_FocusOrderToProperties$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOwnerImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusOwnerImpl$stableprop_getter|androidx_compose_ui_focus_FocusOwnerImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusPropertiesImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusPropertiesImpl$stableprop_getter|androidx_compose_ui_focus_FocusPropertiesImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester$stableprop_getter|androidx_compose_ui_focus_FocusRequester$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop_getter|androidx_compose_ui_focus_FocusRequester_Companion_FocusRequesterFactory$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRestorerNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusRestorerNode$stableprop_getter|androidx_compose_ui_focus_FocusRestorerNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode$stableprop_getter|androidx_compose_ui_focus_FocusTargetNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop_getter|androidx_compose_ui_focus_FocusTargetNode_FocusTargetElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTransactionManager$stableprop_getter(): kotlin/Int // androidx.compose.ui.focus/androidx_compose_ui_focus_FocusTransactionManager$stableprop_getter|androidx_compose_ui_focus_FocusTransactionManager$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/Group(kotlin/String?, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode>?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.graphics.vector/Group|Group(kotlin.String?;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.collections.List<androidx.compose.ui.graphics.vector.PathNode>?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.graphics.vector/Path(kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode>, androidx.compose.ui.graphics/PathFillType, kotlin/String?, androidx.compose.ui.graphics/Brush?, kotlin/Float, androidx.compose.ui.graphics/Brush?, kotlin/Float, kotlin/Float, androidx.compose.ui.graphics/StrokeCap, androidx.compose.ui.graphics/StrokeJoin, kotlin/Float, kotlin/Float, kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.compose.ui.graphics.vector/Path|Path(kotlin.collections.List<androidx.compose.ui.graphics.vector.PathNode>;androidx.compose.ui.graphics.PathFillType;kotlin.String?;androidx.compose.ui.graphics.Brush?;kotlin.Float;androidx.compose.ui.graphics.Brush?;kotlin.Float;kotlin.Float;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.graphics.StrokeJoin;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.graphics.vector/RenderVectorGroup(androidx.compose.ui.graphics.vector/VectorGroup, kotlin.collections/Map<kotlin/String, androidx.compose.ui.graphics.vector/VectorConfig>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.graphics.vector/RenderVectorGroup|RenderVectorGroup(androidx.compose.ui.graphics.vector.VectorGroup;kotlin.collections.Map<kotlin.String,androidx.compose.ui.graphics.vector.VectorConfig>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.ui.graphics.vector/addPathNodes(kotlin/String?): kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode> // androidx.compose.ui.graphics.vector/addPathNodes|addPathNodes(kotlin.String?){}[0] -final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.graphics.vector/ImageVector): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.graphics.vector.ImageVector){}[0] -final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float = ..., kotlin/Float = ..., kotlin/String = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/BlendMode = ..., kotlin/Boolean = ..., kotlin/Function2<kotlin/Float, kotlin/Float, kotlin/Unit>): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Float;kotlin.Float;kotlin.String;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.BlendMode;kotlin.Boolean;kotlin.Function2<kotlin.Float,kotlin.Float,kotlin.Unit>){}[0] -final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float = ..., kotlin/Float = ..., kotlin/String = ..., androidx.compose.ui.graphics/Color = ..., androidx.compose.ui.graphics/BlendMode = ..., kotlin/Function2<kotlin/Float, kotlin/Float, kotlin/Unit>): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Float;kotlin.Float;kotlin.String;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.BlendMode;kotlin.Function2<kotlin.Float,kotlin.Float,kotlin.Unit>){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_DrawCache$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_DrawCache$stableprop_getter|androidx_compose_ui_graphics_vector_DrawCache$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_GroupComponent$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_GroupComponent$stableprop_getter|androidx_compose_ui_graphics_vector_GroupComponent$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector$stableprop_getter|androidx_compose_ui_graphics_vector_ImageVector$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop_getter|androidx_compose_ui_graphics_vector_ImageVector_Builder$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_PathComponent$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_PathComponent$stableprop_getter|androidx_compose_ui_graphics_vector_PathComponent$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VNode$stableprop_getter|androidx_compose_ui_graphics_vector_VNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorApplier$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorApplier$stableprop_getter|androidx_compose_ui_graphics_vector_VectorApplier$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorComponent$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorComponent$stableprop_getter|androidx_compose_ui_graphics_vector_VectorComponent$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorGroup$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorGroup$stableprop_getter|androidx_compose_ui_graphics_vector_VectorGroup$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorNode$stableprop_getter|androidx_compose_ui_graphics_vector_VectorNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPainter$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPainter$stableprop_getter|androidx_compose_ui_graphics_vector_VectorPainter$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPath$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorPath$stableprop_getter|androidx_compose_ui_graphics_vector_VectorPath$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_Fill$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_FillAlpha$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_PathData$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_PivotX$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_PivotY$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_Rotation$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_ScaleX$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_ScaleY$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_Stroke$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_StrokeAlpha$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_StrokeLineWidth$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_TranslateX$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_TranslateY$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_TrimPathEnd$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_TrimPathOffset$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics.vector/androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop_getter|androidx_compose_ui_graphics_vector_VectorProperty_TrimPathStart$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.graphics.vector/ImageVector, androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.graphics.vector.ImageVector;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float, kotlin/Float, kotlin/String?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/BlendMode, kotlin/Boolean, kotlin/Function4<kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Float;kotlin.Float;kotlin.String?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.BlendMode;kotlin.Boolean;kotlin.Function4<kotlin.Float,kotlin.Float,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.graphics.vector/rememberVectorPainter(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, kotlin/Float, kotlin/Float, kotlin/String?, androidx.compose.ui.graphics/Color, androidx.compose.ui.graphics/BlendMode, kotlin/Function4<kotlin/Float, kotlin/Float, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.graphics.vector/VectorPainter // androidx.compose.ui.graphics.vector/rememberVectorPainter|rememberVectorPainter(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;kotlin.Float;kotlin.Float;kotlin.String?;androidx.compose.ui.graphics.Color;androidx.compose.ui.graphics.BlendMode;kotlin.Function4<kotlin.Float,kotlin.Float,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.ui.graphics/GraphicsLayerScope(): androidx.compose.ui.graphics/GraphicsLayerScope // androidx.compose.ui.graphics/GraphicsLayerScope|GraphicsLayerScope(){}[0] final fun androidx.compose.ui.graphics/TransformOrigin(kotlin/Float, kotlin/Float): androidx.compose.ui.graphics/TransformOrigin // androidx.compose.ui.graphics/TransformOrigin|TransformOrigin(kotlin.Float;kotlin.Float){}[0] -final fun androidx.compose.ui.graphics/rememberGraphicsLayer(): androidx.compose.ui.graphics.layer/GraphicsLayer // androidx.compose.ui.graphics/rememberGraphicsLayer|rememberGraphicsLayer(){}[0] +final fun androidx.compose.ui.graphics/androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics/androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop_getter|androidx_compose_ui_graphics_BlockGraphicsLayerModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics/androidx_compose_ui_graphics_Fields$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics/androidx_compose_ui_graphics_Fields$stableprop_getter|androidx_compose_ui_graphics_Fields$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics/androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.graphics/androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop_getter|androidx_compose_ui_graphics_ReusableGraphicsLayerScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.graphics/rememberGraphicsLayer(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.ui.graphics.layer/GraphicsLayer // androidx.compose.ui.graphics/rememberGraphicsLayer|rememberGraphicsLayer(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.ui.hapticfeedback/androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop_getter(): kotlin/Int // androidx.compose.ui.hapticfeedback/androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop_getter|androidx_compose_ui_hapticfeedback_PlatformHapticFeedbackType$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.key/androidx_compose_ui_input_key_NativeKeyEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.key/androidx_compose_ui_input_key_NativeKeyEvent$stableprop_getter|androidx_compose_ui_input_key_NativeKeyEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop_getter|androidx_compose_ui_input_nestedscroll_NestedScrollDispatcher$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.nestedscroll/androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop_getter|androidx_compose_ui_input_nestedscroll_NestedScrollNode$stableprop_getter(){}[0] final fun androidx.compose.ui.input.nestedscroll/nestedScrollModifierNode(androidx.compose.ui.input.nestedscroll/NestedScrollConnection, androidx.compose.ui.input.nestedscroll/NestedScrollDispatcher?): androidx.compose.ui.node/DelegatableNode // androidx.compose.ui.input.nestedscroll/nestedScrollModifierNode|nestedScrollModifierNode(androidx.compose.ui.input.nestedscroll.NestedScrollConnection;androidx.compose.ui.input.nestedscroll.NestedScrollDispatcher?){}[0] +final fun androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop_getter|androidx_compose_ui_input_pointer_util_DataPointAtTime$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop_getter|androidx_compose_ui_input_pointer_util_PointerIdArray$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop_getter|androidx_compose_ui_input_pointer_util_VelocityTracker$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer.util/androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop_getter|androidx_compose_ui_input_pointer_util_VelocityTracker1D$stableprop_getter(){}[0] final fun androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode(androidx.compose.ui.input.pointer/PointerInputEventHandler): androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode // androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode|SuspendingPointerInputModifierNode(androidx.compose.ui.input.pointer.PointerInputEventHandler){}[0] final fun androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode(kotlin.coroutines/SuspendFunction1<androidx.compose.ui.input.pointer/PointerInputScope, kotlin/Unit>): androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode // androidx.compose.ui.input.pointer/SuspendingPointerInputModifierNode|SuspendingPointerInputModifierNode(kotlin.coroutines.SuspendFunction1<androidx.compose.ui.input.pointer.PointerInputScope,kotlin.Unit>){}[0] -final fun androidx.compose.ui.layout/LookaheadScope(kotlin/Function1<androidx.compose.ui.layout/LookaheadScope, kotlin/Unit>) // androidx.compose.ui.layout/LookaheadScope|LookaheadScope(kotlin.Function1<androidx.compose.ui.layout.LookaheadScope,kotlin.Unit>){}[0] -final fun androidx.compose.ui.layout/MultiMeasureLayout(androidx.compose.ui/Modifier = ..., kotlin/Function0<kotlin/Unit>, androidx.compose.ui.layout/MeasurePolicy) // androidx.compose.ui.layout/MultiMeasureLayout|MultiMeasureLayout(androidx.compose.ui.Modifier;kotlin.Function0<kotlin.Unit>;androidx.compose.ui.layout.MeasurePolicy){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop_getter|androidx_compose_ui_input_pointer_CancelTimeoutCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_ConsumedData$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_ConsumedData$stableprop_getter|androidx_compose_ui_input_pointer_ConsumedData$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HistoricalChange$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HistoricalChange$stableprop_getter|androidx_compose_ui_input_pointer_HistoricalChange$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HitPathTracker$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HitPathTracker$stableprop_getter|androidx_compose_ui_input_pointer_HitPathTracker$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop_getter|androidx_compose_ui_input_pointer_HoverIconModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop_getter|androidx_compose_ui_input_pointer_InternalPointerEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_Node$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_Node$stableprop_getter|androidx_compose_ui_input_pointer_Node$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_NodeParent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_NodeParent$stableprop_getter|androidx_compose_ui_input_pointer_NodeParent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEvent$stableprop_getter|androidx_compose_ui_input_pointer_PointerEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop_getter|androidx_compose_ui_input_pointer_PointerEventTimeoutCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop_getter|androidx_compose_ui_input_pointer_PointerHoverIconModifierElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop_getter|androidx_compose_ui_input_pointer_PointerHoverIconModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputChange$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputChange$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputChange$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEvent$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventData$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventData$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputEventData$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputEventProcessor$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputFilter$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputFilter$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputFilter$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputResetException$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_PointerInputResetException$stableprop_getter|androidx_compose_ui_input_pointer_PointerInputResetException$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop_getter|androidx_compose_ui_input_pointer_StylusHoverIconModifierElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop_getter|androidx_compose_ui_input_pointer_StylusHoverIconModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop_getter|androidx_compose_ui_input_pointer_SuspendPointerInputElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.pointer/androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop_getter|androidx_compose_ui_input_pointer_SuspendingPointerInputModifierNodeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.input.rotary/androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop_getter(): kotlin/Int // androidx.compose.ui.input.rotary/androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop_getter|androidx_compose_ui_input_rotary_RotaryScrollEvent$stableprop_getter(){}[0] +final fun androidx.compose.ui.input/androidx_compose_ui_input_InputModeManagerImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.input/androidx_compose_ui_input_InputModeManagerImpl$stableprop_getter|androidx_compose_ui_input_InputModeManagerImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.internal/androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.ui.internal/androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop_getter|androidx_compose_ui_internal_PlatformOptimizedCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/LookaheadScope(kotlin/Function3<androidx.compose.ui.layout/LookaheadScope, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.ui.layout/LookaheadScope|LookaheadScope(kotlin.Function3<androidx.compose.ui.layout.LookaheadScope,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.ui.layout/MultiMeasureLayout(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui.layout/MeasurePolicy, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/MultiMeasureLayout|MultiMeasureLayout(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.layout.MeasurePolicy;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.ui.layout/RectRulers(): androidx.compose.ui.layout/RectRulers // androidx.compose.ui.layout/RectRulers|RectRulers(){}[0] -final fun androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui.layout/SubcomposeLayoutState, androidx.compose.ui/Modifier = ..., kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>) // androidx.compose.ui.layout/SubcomposeLayout|SubcomposeLayout(androidx.compose.ui.layout.SubcomposeLayoutState;androidx.compose.ui.Modifier;kotlin.Function2<androidx.compose.ui.layout.SubcomposeMeasureScope,androidx.compose.ui.unit.Constraints,androidx.compose.ui.layout.MeasureResult>){}[0] -final fun androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui/Modifier = ..., kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>) // androidx.compose.ui.layout/SubcomposeLayout|SubcomposeLayout(androidx.compose.ui.Modifier;kotlin.Function2<androidx.compose.ui.layout.SubcomposeMeasureScope,androidx.compose.ui.unit.Constraints,androidx.compose.ui.layout.MeasureResult>){}[0] +final fun androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui.layout/SubcomposeLayoutState, androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/SubcomposeLayout|SubcomposeLayout(androidx.compose.ui.layout.SubcomposeLayoutState;androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.ui.layout.SubcomposeMeasureScope,androidx.compose.ui.unit.Constraints,androidx.compose.ui.layout.MeasureResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.layout/SubcomposeLayout(androidx.compose.ui/Modifier?, kotlin/Function2<androidx.compose.ui.layout/SubcomposeMeasureScope, androidx.compose.ui.unit/Constraints, androidx.compose.ui.layout/MeasureResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/SubcomposeLayout|SubcomposeLayout(androidx.compose.ui.Modifier?;kotlin.Function2<androidx.compose.ui.layout.SubcomposeMeasureScope,androidx.compose.ui.unit.Constraints,androidx.compose.ui.layout.MeasureResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun androidx.compose.ui.layout/SubcomposeSlotReusePolicy(kotlin/Int): androidx.compose.ui.layout/SubcomposeSlotReusePolicy // androidx.compose.ui.layout/SubcomposeSlotReusePolicy|SubcomposeSlotReusePolicy(kotlin.Int){}[0] -final fun androidx.compose.ui.layout/TestModifierUpdaterLayout(kotlin/Function1<androidx.compose.ui.layout/TestModifierUpdater, kotlin/Unit>) // androidx.compose.ui.layout/TestModifierUpdaterLayout|TestModifierUpdaterLayout(kotlin.Function1<androidx.compose.ui.layout.TestModifierUpdater,kotlin.Unit>){}[0] -final fun androidx.compose.ui.layout/combineAsVirtualLayouts(kotlin.collections/List<kotlin/Function0<kotlin/Unit>>): kotlin/Function0<kotlin/Unit> // androidx.compose.ui.layout/combineAsVirtualLayouts|combineAsVirtualLayouts(kotlin.collections.List<kotlin.Function0<kotlin.Unit>>){}[0] +final fun androidx.compose.ui.layout/TestModifierUpdaterLayout(kotlin/Function1<androidx.compose.ui.layout/TestModifierUpdater, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.compose.ui.layout/TestModifierUpdaterLayout|TestModifierUpdaterLayout(kotlin.Function1<androidx.compose.ui.layout.TestModifierUpdater,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_AlignmentLine$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_AlignmentLine$stableprop_getter|androidx_compose_ui_layout_AlignmentLine$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop_getter|androidx_compose_ui_layout_ApproachIntrinsicsMeasureScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop_getter|androidx_compose_ui_layout_ApproachMeasureScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop_getter|androidx_compose_ui_layout_DefaultIntrinsicMeasurable$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_FixedScale$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_FixedScale$stableprop_getter|androidx_compose_ui_layout_FixedScale$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop_getter|androidx_compose_ui_layout_HorizontalAlignmentLine$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalRuler$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_HorizontalRuler$stableprop_getter|androidx_compose_ui_layout_HorizontalRuler$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop_getter|androidx_compose_ui_layout_IntrinsicsMeasureScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsElement$stableprop_getter|androidx_compose_ui_layout_LayoutBoundsElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsHolder$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsHolder$stableprop_getter|androidx_compose_ui_layout_LayoutBoundsHolder$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutBoundsNode$stableprop_getter|androidx_compose_ui_layout_LayoutBoundsNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutIdModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutIdModifier$stableprop_getter|androidx_compose_ui_layout_LayoutIdModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutModifierImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutModifierImpl$stableprop_getter|androidx_compose_ui_layout_LayoutModifierImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop_getter|androidx_compose_ui_layout_LayoutNodeSubcompositionsState$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop_getter|androidx_compose_ui_layout_LookaheadLayoutCoordinates$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadScopeImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_LookaheadScopeImpl$stableprop_getter|androidx_compose_ui_layout_LookaheadScopeImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_ModifierInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_ModifierInfo$stableprop_getter|androidx_compose_ui_layout_ModifierInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop_getter|androidx_compose_ui_layout_MultiContentMeasurePolicyImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop_getter|androidx_compose_ui_layout_NoWindowInsetsAnimation$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop_getter|androidx_compose_ui_layout_OnVisibilityChangedNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable$stableprop_getter|androidx_compose_ui_layout_Placeable$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable_PlacementScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_Placeable_PlacementScope$stableprop_getter|androidx_compose_ui_layout_Placeable_PlacementScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_RootMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_RootMeasurePolicy$stableprop_getter|androidx_compose_ui_layout_RootMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_Ruler$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_Ruler$stableprop_getter|androidx_compose_ui_layout_Ruler$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeLayoutState$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeLayoutState$stableprop_getter|androidx_compose_ui_layout_SubcomposeLayoutState$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop_getter|androidx_compose_ui_layout_SubcomposeSlotReusePolicy_SlotIdsSet$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_TestModifierUpdater$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_TestModifierUpdater$stableprop_getter|androidx_compose_ui_layout_TestModifierUpdater$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalAlignmentLine$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalAlignmentLine$stableprop_getter|androidx_compose_ui_layout_VerticalAlignmentLine$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalRuler$stableprop_getter(): kotlin/Int // androidx.compose.ui.layout/androidx_compose_ui_layout_VerticalRuler$stableprop_getter|androidx_compose_ui_layout_VerticalRuler$stableprop_getter(){}[0] +final fun androidx.compose.ui.layout/combineAsVirtualLayouts(kotlin.collections/List<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>>): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.ui.layout/combineAsVirtualLayouts|combineAsVirtualLayouts(kotlin.collections.List<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>>){}[0] final fun androidx.compose.ui.layout/createMeasurePolicy(androidx.compose.ui.layout/MultiContentMeasurePolicy): androidx.compose.ui.layout/MeasurePolicy // androidx.compose.ui.layout/createMeasurePolicy|createMeasurePolicy(androidx.compose.ui.layout.MultiContentMeasurePolicy){}[0] final fun androidx.compose.ui.layout/lerp(androidx.compose.ui.layout/ScaleFactor, androidx.compose.ui.layout/ScaleFactor, kotlin/Float): androidx.compose.ui.layout/ScaleFactor // androidx.compose.ui.layout/lerp|lerp(androidx.compose.ui.layout.ScaleFactor;androidx.compose.ui.layout.ScaleFactor;kotlin.Float){}[0] -final fun androidx.compose.ui.layout/materializerOf(androidx.compose.ui/Modifier): kotlin/Function1<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, kotlin/Unit> // androidx.compose.ui.layout/materializerOf|materializerOf(androidx.compose.ui.Modifier){}[0] -final fun androidx.compose.ui.layout/materializerOfWithCompositionLocalInjection(androidx.compose.ui/Modifier): kotlin/Function1<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, kotlin/Unit> // androidx.compose.ui.layout/materializerOfWithCompositionLocalInjection|materializerOfWithCompositionLocalInjection(androidx.compose.ui.Modifier){}[0] +final fun androidx.compose.ui.layout/materializerOf(androidx.compose.ui/Modifier): kotlin/Function3<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.ui.layout/materializerOf|materializerOf(androidx.compose.ui.Modifier){}[0] +final fun androidx.compose.ui.layout/materializerOfWithCompositionLocalInjection(androidx.compose.ui/Modifier): kotlin/Function3<androidx.compose.runtime/SkippableUpdater<androidx.compose.ui.node/ComposeUiNode>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.compose.ui.layout/materializerOfWithCompositionLocalInjection|materializerOfWithCompositionLocalInjection(androidx.compose.ui.Modifier){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop_getter|androidx_compose_ui_modifier_BackwardsCompatLocalMap$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_EmptyMap$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_EmptyMap$stableprop_getter|androidx_compose_ui_modifier_EmptyMap$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocal$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocal$stableprop_getter|androidx_compose_ui_modifier_ModifierLocal$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalManager$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalManager$stableprop_getter|androidx_compose_ui_modifier_ModifierLocalManager$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalMap$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ModifierLocalMap$stableprop_getter|androidx_compose_ui_modifier_ModifierLocalMap$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_MultiLocalMap$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_MultiLocalMap$stableprop_getter|androidx_compose_ui_modifier_MultiLocalMap$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop_getter|androidx_compose_ui_modifier_ProvidableModifierLocal$stableprop_getter(){}[0] +final fun androidx.compose.ui.modifier/androidx_compose_ui_modifier_SingleLocalMap$stableprop_getter(): kotlin/Int // androidx.compose.ui.modifier/androidx_compose_ui_modifier_SingleLocalMap$stableprop_getter|androidx_compose_ui_modifier_SingleLocalMap$stableprop_getter(){}[0] final fun androidx.compose.ui.modifier/modifierLocalMapOf(): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(){}[0] final fun androidx.compose.ui.modifier/modifierLocalMapOf(androidx.compose.ui.modifier/ModifierLocal<*>, androidx.compose.ui.modifier/ModifierLocal<*>, kotlin/Array<out androidx.compose.ui.modifier/ModifierLocal<*>>...): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(androidx.compose.ui.modifier.ModifierLocal<*>;androidx.compose.ui.modifier.ModifierLocal<*>;kotlin.Array<out|androidx.compose.ui.modifier.ModifierLocal<*>>...){}[0] final fun androidx.compose.ui.modifier/modifierLocalMapOf(kotlin/Array<out androidx.compose.ui.modifier/ModifierLocal<*>>...): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(kotlin.Array<out|androidx.compose.ui.modifier.ModifierLocal<*>>...){}[0] @@ -3952,19 +4305,108 @@ final fun androidx.compose.ui.modifier/modifierLocalMapOf(kotlin/Pair<androidx.compose.ui.modifier/ModifierLocal<*>, kotlin/Any>, kotlin/Pair<androidx.compose.ui.modifier/ModifierLocal<*>, kotlin/Any>, kotlin/Array<out kotlin/Pair<androidx.compose.ui.modifier/ModifierLocal<*>, kotlin/Any>>...): androidx.compose.ui.modifier/ModifierLocalMap // androidx.compose.ui.modifier/modifierLocalMapOf|modifierLocalMapOf(kotlin.Pair<androidx.compose.ui.modifier.ModifierLocal<*>,kotlin.Any>;kotlin.Pair<androidx.compose.ui.modifier.ModifierLocal<*>,kotlin.Any>;kotlin.Array<out|kotlin.Pair<androidx.compose.ui.modifier.ModifierLocal<*>,kotlin.Any>>...){}[0] final fun androidx.compose.ui.node/DpTouchBoundsExpansion(androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ..., androidx.compose.ui.unit/Dp = ...): androidx.compose.ui.node/DpTouchBoundsExpansion // androidx.compose.ui.node/DpTouchBoundsExpansion|DpTouchBoundsExpansion(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp){}[0] final fun androidx.compose.ui.node/TouchBoundsExpansion(kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ..., kotlin/Int = ...): androidx.compose.ui.node/TouchBoundsExpansion // androidx.compose.ui.node/TouchBoundsExpansion|TouchBoundsExpansion(kotlin.Int;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_AlignmentLines$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_AlignmentLines$stableprop_getter|androidx_compose_ui_node_AlignmentLines$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_BackwardsCompatNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_BackwardsCompatNode$stableprop_getter|androidx_compose_ui_node_BackwardsCompatNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_DelegatingNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_DelegatingNode$stableprop_getter|androidx_compose_ui_node_DelegatingNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSet$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSet$stableprop_getter|androidx_compose_ui_node_DepthSortedSet$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop_getter|androidx_compose_ui_node_DepthSortedSetsForDifferentPasses$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop_getter|androidx_compose_ui_node_DpTouchBoundsExpansion$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_HitTestResult$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_HitTestResult$stableprop_getter|androidx_compose_ui_node_HitTestResult$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_InnerNodeCoordinator$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_InnerNodeCoordinator$stableprop_getter|androidx_compose_ui_node_InnerNodeCoordinator$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_IntrinsicsPolicy$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_IntrinsicsPolicy$stableprop_getter|androidx_compose_ui_node_IntrinsicsPolicy$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop_getter|androidx_compose_ui_node_LayoutModifierNodeCoordinator$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode$stableprop_getter|androidx_compose_ui_node_LayoutNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop_getter|androidx_compose_ui_node_LayoutNodeAlignmentLines$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeDrawScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeDrawScope$stableprop_getter|androidx_compose_ui_node_LayoutNodeDrawScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop_getter|androidx_compose_ui_node_LayoutNodeLayoutDelegate$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop_getter|androidx_compose_ui_node_LayoutNode_NoIntrinsicsMeasurePolicy$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop_getter|androidx_compose_ui_node_LayoutTreeConsistencyChecker$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LookaheadAlignmentLines$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadAlignmentLines$stableprop_getter|androidx_compose_ui_node_LookaheadAlignmentLines$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop_getter|androidx_compose_ui_node_LookaheadCapablePlaceable$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LookaheadDelegate$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadDelegate$stableprop_getter|androidx_compose_ui_node_LookaheadDelegate$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_LookaheadPassDelegate$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_LookaheadPassDelegate$stableprop_getter|androidx_compose_ui_node_LookaheadPassDelegate$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop_getter|androidx_compose_ui_node_MeasureAndLayoutDelegate$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop_getter|androidx_compose_ui_node_MeasureAndLayoutDelegate_PostponedRequest$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_MeasurePassDelegate$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_MeasurePassDelegate$stableprop_getter|androidx_compose_ui_node_MeasurePassDelegate$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_ModifierNodeElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_ModifierNodeElement$stableprop_getter|androidx_compose_ui_node_ModifierNodeElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop_getter|androidx_compose_ui_node_MutableVectorWithMutationTracking$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_NodeChain$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_NodeChain$stableprop_getter|androidx_compose_ui_node_NodeChain$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_NodeCoordinator$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_NodeCoordinator$stableprop_getter|androidx_compose_ui_node_NodeCoordinator$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop_getter|androidx_compose_ui_node_NodeMeasuringIntrinsics$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_Nodes$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_Nodes$stableprop_getter|androidx_compose_ui_node_Nodes$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop_getter|androidx_compose_ui_node_ObserverNodeOwnerScope$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_OnPositionedDispatcher$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_OnPositionedDispatcher$stableprop_getter|androidx_compose_ui_node_OnPositionedDispatcher$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_OwnerSnapshotObserver$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_OwnerSnapshotObserver$stableprop_getter|androidx_compose_ui_node_OwnerSnapshotObserver$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_Ref$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_Ref$stableprop_getter|androidx_compose_ui_node_Ref$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_SortedSet$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_SortedSet$stableprop_getter|androidx_compose_ui_node_SortedSet$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_TailModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_TailModifierNode$stableprop_getter|androidx_compose_ui_node_TailModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.node/androidx_compose_ui_node_WeakReference$stableprop_getter(): kotlin/Int // androidx.compose.ui.node/androidx_compose_ui_node_WeakReference$stableprop_getter|androidx_compose_ui_node_WeakReference$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_AtomicInt$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_AtomicInt$stableprop_getter|androidx_compose_ui_platform_AtomicInt$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_ClipEntry$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_ClipEntry$stableprop_getter|androidx_compose_ui_platform_ClipEntry$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_ClipMetadata$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_ClipMetadata$stableprop_getter|androidx_compose_ui_platform_ClipMetadata$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop_getter|androidx_compose_ui_platform_DelegatingSoftwareKeyboardController$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_InspectableModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectableModifier$stableprop_getter|androidx_compose_ui_platform_InspectableModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorInfo$stableprop_getter|androidx_compose_ui_platform_InspectorInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorValueInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_InspectorValueInfo$stableprop_getter|androidx_compose_ui_platform_InspectorValueInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_NativeClipboard$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_NativeClipboard$stableprop_getter|androidx_compose_ui_platform_NativeClipboard$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_SynchronizedObject$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_SynchronizedObject$stableprop_getter|androidx_compose_ui_platform_SynchronizedObject$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElement$stableprop_getter|androidx_compose_ui_platform_ValueElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElementSequence$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_ValueElementSequence$stableprop_getter|androidx_compose_ui_platform_ValueElementSequence$stableprop_getter(){}[0] +final fun androidx.compose.ui.platform/androidx_compose_ui_platform_WindowInfoImpl$stableprop_getter(): kotlin/Int // androidx.compose.ui.platform/androidx_compose_ui_platform_WindowInfoImpl$stableprop_getter|androidx_compose_ui_platform_WindowInfoImpl$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_AccessibilityAction$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_AccessibilityAction$stableprop_getter|androidx_compose_ui_semantics_AccessibilityAction$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop_getter|androidx_compose_ui_semantics_AppendedSemanticsElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop_getter|androidx_compose_ui_semantics_ClearAndSetSemanticsElement$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionInfo$stableprop_getter|androidx_compose_ui_semantics_CollectionInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionItemInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CollectionItemInfo$stableprop_getter|androidx_compose_ui_semantics_CollectionItemInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop_getter|androidx_compose_ui_semantics_CoreSemanticsModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop_getter|androidx_compose_ui_semantics_CustomAccessibilityAction$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop_getter|androidx_compose_ui_semantics_EmptySemanticsModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop_getter|androidx_compose_ui_semantics_ProgressBarRangeInfo$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_ScrollAxisRange$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_ScrollAxisRange$stableprop_getter|androidx_compose_ui_semantics_ScrollAxisRange$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsActions$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsActions$stableprop_getter|androidx_compose_ui_semantics_SemanticsActions$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsConfiguration$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsConfiguration$stableprop_getter|androidx_compose_ui_semantics_SemanticsConfiguration$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNode$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNode$stableprop_getter|androidx_compose_ui_semantics_SemanticsNode$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop_getter|androidx_compose_ui_semantics_SemanticsNodeWithAdjustedBounds$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsOwner$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsOwner$stableprop_getter|androidx_compose_ui_semantics_SemanticsOwner$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsProperties$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsProperties$stableprop_getter|androidx_compose_ui_semantics_SemanticsProperties$stableprop_getter(){}[0] +final fun androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop_getter(): kotlin/Int // androidx.compose.ui.semantics/androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop_getter|androidx_compose_ui_semantics_SemanticsPropertyKey$stableprop_getter(){}[0] +final fun androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectList$stableprop_getter(): kotlin/Int // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectList$stableprop_getter|androidx_compose_ui_spatial_RectList$stableprop_getter(){}[0] +final fun androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectManager$stableprop_getter(): kotlin/Int // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RectManager$stableprop_getter|androidx_compose_ui_spatial_RectManager$stableprop_getter(){}[0] +final fun androidx.compose.ui.spatial/androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop_getter(): kotlin/Int // androidx.compose.ui.spatial/androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop_getter|androidx_compose_ui_spatial_RelativeLayoutBounds$stableprop_getter(){}[0] +final fun androidx.compose.ui.spatial/androidx_compose_ui_spatial_ThrottledCallbacks$stableprop_getter(): kotlin/Int // androidx.compose.ui.spatial/androidx_compose_ui_spatial_ThrottledCallbacks$stableprop_getter|androidx_compose_ui_spatial_ThrottledCallbacks$stableprop_getter(){}[0] final fun androidx.compose.ui.state/ToggleableState(kotlin/Boolean): androidx.compose.ui.state/ToggleableState // androidx.compose.ui.state/ToggleableState|ToggleableState(kotlin.Boolean){}[0] -final fun androidx.compose.ui.text/rememberTextMeasurer(kotlin/Int = ...): androidx.compose.ui.text/TextMeasurer // androidx.compose.ui.text/rememberTextMeasurer|rememberTextMeasurer(kotlin.Int){}[0] -final fun androidx.compose.ui.window/Dialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui.window/DialogProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.window/Dialog|Dialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.window.DialogProperties;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.ui.window/Popup(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.window/PopupProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.window/Popup|Popup(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.window.PopupProperties;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.compose.ui.window/Popup(androidx.compose.ui/Alignment = ..., androidx.compose.ui.unit/IntOffset = ..., kotlin/Function0<kotlin/Unit>? = ..., androidx.compose.ui.window/PopupProperties = ..., kotlin/Function0<kotlin/Unit>) // androidx.compose.ui.window/Popup|Popup(androidx.compose.ui.Alignment;androidx.compose.ui.unit.IntOffset;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.window.PopupProperties;kotlin.Function0<kotlin.Unit>){}[0] +final fun androidx.compose.ui.text/rememberTextMeasurer(kotlin/Int, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.ui.text/TextMeasurer // androidx.compose.ui.text/rememberTextMeasurer|rememberTextMeasurer(kotlin.Int;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.viewinterop/androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop_getter(): kotlin/Int // androidx.compose.ui.viewinterop/androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop_getter|androidx_compose_ui_viewinterop_InteropViewFactoryHolder$stableprop_getter(){}[0] +final fun androidx.compose.ui.window/Dialog(kotlin/Function0<kotlin/Unit>, androidx.compose.ui.window/DialogProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.window/Dialog|Dialog(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.window.DialogProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.window/Popup(androidx.compose.ui.window/PopupPositionProvider, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.window/PopupProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.window/Popup|Popup(androidx.compose.ui.window.PopupPositionProvider;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.window.PopupProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.window/Popup(androidx.compose.ui/Alignment?, androidx.compose.ui.unit/IntOffset, kotlin/Function0<kotlin/Unit>?, androidx.compose.ui.window/PopupProperties?, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.window/Popup|Popup(androidx.compose.ui.Alignment?;androidx.compose.ui.unit.IntOffset;kotlin.Function0<kotlin.Unit>?;androidx.compose.ui.window.PopupProperties?;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.compose.ui.window/androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop_getter(): kotlin/Int // androidx.compose.ui.window/androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop_getter|androidx_compose_ui_window_AlignmentOffsetPositionProvider$stableprop_getter(){}[0] +final fun androidx.compose.ui.window/androidx_compose_ui_window_DialogProperties$stableprop_getter(): kotlin/Int // androidx.compose.ui.window/androidx_compose_ui_window_DialogProperties$stableprop_getter|androidx_compose_ui_window_DialogProperties$stableprop_getter(){}[0] +final fun androidx.compose.ui.window/androidx_compose_ui_window_PopupProperties$stableprop_getter(): kotlin/Int // androidx.compose.ui.window/androidx_compose_ui_window_PopupProperties$stableprop_getter|androidx_compose_ui_window_PopupProperties$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_AbsoluteAlignment$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_AbsoluteAlignment$stableprop_getter|androidx_compose_ui_AbsoluteAlignment$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_AtomicReference$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_AtomicReference$stableprop_getter|androidx_compose_ui_AtomicReference$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment$stableprop_getter|androidx_compose_ui_BiasAbsoluteAlignment$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop_getter|androidx_compose_ui_BiasAbsoluteAlignment_Horizontal$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_BiasAlignment$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_BiasAlignment$stableprop_getter|androidx_compose_ui_BiasAlignment$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_BiasAlignment_Horizontal$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_BiasAlignment_Horizontal$stableprop_getter|androidx_compose_ui_BiasAlignment_Horizontal$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_BiasAlignment_Vertical$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_BiasAlignment_Vertical$stableprop_getter|androidx_compose_ui_BiasAlignment_Vertical$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_CombinedModifier$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_CombinedModifier$stableprop_getter|androidx_compose_ui_CombinedModifier$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_ComposeUiFlags$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_ComposeUiFlags$stableprop_getter|androidx_compose_ui_ComposeUiFlags$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop_getter|androidx_compose_ui_CompositionLocalMapInjectionElement$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop_getter|androidx_compose_ui_CompositionLocalMapInjectionNode$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_FrameRateModifierNode$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_FrameRateModifierNode$stableprop_getter|androidx_compose_ui_FrameRateModifierNode$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop_getter|androidx_compose_ui_ModifierNodeDetachedCancellationException$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_Modifier_Node$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_Modifier_Node$stableprop_getter|androidx_compose_ui_Modifier_Node$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_ZIndexElement$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_ZIndexElement$stableprop_getter|androidx_compose_ui_ZIndexElement$stableprop_getter(){}[0] +final fun androidx.compose.ui/androidx_compose_ui_ZIndexNode$stableprop_getter(): kotlin/Int // androidx.compose.ui/androidx_compose_ui_ZIndexNode$stableprop_getter|androidx_compose_ui_ZIndexNode$stableprop_getter(){}[0] final inline fun (androidx.compose.ui.graphics.vector/ImageVector.Builder).androidx.compose.ui.graphics.vector/group(kotlin/String = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin/Float = ..., kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode> = ..., kotlin/Function1<androidx.compose.ui.graphics.vector/ImageVector.Builder, kotlin/Unit>): androidx.compose.ui.graphics.vector/ImageVector.Builder // androidx.compose.ui.graphics.vector/group|group@androidx.compose.ui.graphics.vector.ImageVector.Builder(kotlin.String;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.Float;kotlin.collections.List<androidx.compose.ui.graphics.vector.PathNode>;kotlin.Function1<androidx.compose.ui.graphics.vector.ImageVector.Builder,kotlin.Unit>){}[0] final inline fun (androidx.compose.ui.graphics.vector/ImageVector.Builder).androidx.compose.ui.graphics.vector/path(kotlin/String = ..., androidx.compose.ui.graphics/Brush? = ..., kotlin/Float = ..., androidx.compose.ui.graphics/Brush? = ..., kotlin/Float = ..., kotlin/Float = ..., androidx.compose.ui.graphics/StrokeCap = ..., androidx.compose.ui.graphics/StrokeJoin = ..., kotlin/Float = ..., androidx.compose.ui.graphics/PathFillType = ..., kotlin/Function1<androidx.compose.ui.graphics.vector/PathBuilder, kotlin/Unit>): androidx.compose.ui.graphics.vector/ImageVector.Builder // androidx.compose.ui.graphics.vector/path|path@androidx.compose.ui.graphics.vector.ImageVector.Builder(kotlin.String;androidx.compose.ui.graphics.Brush?;kotlin.Float;androidx.compose.ui.graphics.Brush?;kotlin.Float;kotlin.Float;androidx.compose.ui.graphics.StrokeCap;androidx.compose.ui.graphics.StrokeJoin;kotlin.Float;androidx.compose.ui.graphics.PathFillType;kotlin.Function1<androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit>){}[0] final inline fun (androidx.compose.ui.layout/ScaleFactor).androidx.compose.ui.layout/takeOrElse(kotlin/Function0<androidx.compose.ui.layout/ScaleFactor>): androidx.compose.ui.layout/ScaleFactor // androidx.compose.ui.layout/takeOrElse|takeOrElse@androidx.compose.ui.layout.ScaleFactor(kotlin.Function0<androidx.compose.ui.layout.ScaleFactor>){}[0] final inline fun (androidx.compose.ui/Modifier).androidx.compose.ui.platform/inspectable(noinline kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>, kotlin/Function1<androidx.compose.ui/Modifier, androidx.compose.ui/Modifier>): androidx.compose.ui/Modifier // androidx.compose.ui.platform/inspectable|inspectable@androidx.compose.ui.Modifier(kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>;kotlin.Function1<androidx.compose.ui.Modifier,androidx.compose.ui.Modifier>){}[0] final inline fun androidx.compose.ui.graphics.vector/PathData(kotlin/Function1<androidx.compose.ui.graphics.vector/PathBuilder, kotlin/Unit>): kotlin.collections/List<androidx.compose.ui.graphics.vector/PathNode> // androidx.compose.ui.graphics.vector/PathData|PathData(kotlin.Function1<androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit>){}[0] -final inline fun androidx.compose.ui.layout/Layout(androidx.compose.ui/Modifier = ..., androidx.compose.ui.layout/MeasurePolicy) // androidx.compose.ui.layout/Layout|Layout(androidx.compose.ui.Modifier;androidx.compose.ui.layout.MeasurePolicy){}[0] -final inline fun androidx.compose.ui.layout/Layout(kotlin.collections/List<kotlin/Function0<kotlin/Unit>>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.layout/MultiContentMeasurePolicy) // androidx.compose.ui.layout/Layout|Layout(kotlin.collections.List<kotlin.Function0<kotlin.Unit>>;androidx.compose.ui.Modifier;androidx.compose.ui.layout.MultiContentMeasurePolicy){}[0] -final inline fun androidx.compose.ui.layout/Layout(kotlin/Function0<kotlin/Unit>, androidx.compose.ui/Modifier = ..., androidx.compose.ui.layout/MeasurePolicy) // androidx.compose.ui.layout/Layout|Layout(kotlin.Function0<kotlin.Unit>;androidx.compose.ui.Modifier;androidx.compose.ui.layout.MeasurePolicy){}[0] +final inline fun androidx.compose.ui.layout/Layout(androidx.compose.ui/Modifier?, androidx.compose.ui.layout/MeasurePolicy, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/Layout|Layout(androidx.compose.ui.Modifier?;androidx.compose.ui.layout.MeasurePolicy;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final inline fun androidx.compose.ui.layout/Layout(kotlin.collections/List<kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>>, androidx.compose.ui/Modifier?, androidx.compose.ui.layout/MultiContentMeasurePolicy, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/Layout|Layout(kotlin.collections.List<kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>>;androidx.compose.ui.Modifier?;androidx.compose.ui.layout.MultiContentMeasurePolicy;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final inline fun androidx.compose.ui.layout/Layout(kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.ui/Modifier?, androidx.compose.ui.layout/MeasurePolicy, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.compose.ui.layout/Layout|Layout(kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.ui.Modifier?;androidx.compose.ui.layout.MeasurePolicy;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final inline fun androidx.compose.ui.layout/ScaleFactor(kotlin/Float, kotlin/Float): androidx.compose.ui.layout/ScaleFactor // androidx.compose.ui.layout/ScaleFactor|ScaleFactor(kotlin.Float;kotlin.Float){}[0] final inline fun androidx.compose.ui.platform/debugInspectorInfo(crossinline kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit>): kotlin/Function1<androidx.compose.ui.platform/InspectorInfo, kotlin/Unit> // androidx.compose.ui.platform/debugInspectorInfo|debugInspectorInfo(kotlin.Function1<androidx.compose.ui.platform.InspectorInfo,kotlin.Unit>){}[0] final suspend fun (androidx.compose.ui.node/DelegatableNode).androidx.compose.ui.relocation/bringIntoView(kotlin/Function0<androidx.compose.ui.geometry/Rect?>? = ...) // androidx.compose.ui.relocation/bringIntoView|bringIntoView@androidx.compose.ui.node.DelegatableNode(kotlin.Function0<androidx.compose.ui.geometry.Rect?>?){}[0]
diff --git a/lifecycle/lifecycle-runtime-compose/bcv/native/current.ignore b/lifecycle/lifecycle-runtime-compose/bcv/native/current.ignore new file mode 100644 index 0000000..096ad93 --- /dev/null +++ b/lifecycle/lifecycle-runtime-compose/bcv/native/current.ignore
@@ -0,0 +1,19 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.lifecycle/Lifecycle).androidx.lifecycle.compose/currentStateAsState() from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State, kotlin.coroutines/CoroutineContext) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/LifecycleOwner, androidx.lifecycle/Lifecycle.State, kotlin.coroutines/CoroutineContext) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State, kotlin.coroutines/CoroutineContext) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/LifecycleOwner, androidx.lifecycle/Lifecycle.State, kotlin.coroutines/CoroutineContext) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleEventEffect(androidx.lifecycle/Lifecycle.Event, androidx.lifecycle/LifecycleOwner, kotlin/Function0<kotlin/Unit>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleResumeEffect(androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Array<out kotlin/Any?>, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleStartEffect(androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Array<out kotlin/Any?>, androidx.lifecycle/LifecycleOwner, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/dropUnlessResumed(androidx.lifecycle/LifecycleOwner, kotlin/Function0<kotlin/Unit>) from androidx.lifecycle:lifecycle-runtime-compose +[linuxX64]: Removed declaration androidx.lifecycle.compose/dropUnlessStarted(androidx.lifecycle/LifecycleOwner, kotlin/Function0<kotlin/Unit>) from androidx.lifecycle:lifecycle-runtime-compose \ No newline at end of file
diff --git a/lifecycle/lifecycle-runtime-compose/bcv/native/current.txt b/lifecycle/lifecycle-runtime-compose/bcv/native/current.txt index d851e1b..de3f1d8 100644 --- a/lifecycle/lifecycle-runtime-compose/bcv/native/current.txt +++ b/lifecycle/lifecycle-runtime-compose/bcv/native/current.txt
@@ -34,22 +34,26 @@ final val androidx.lifecycle.compose/LocalLifecycleOwner // androidx.lifecycle.compose/LocalLifecycleOwner|{}LocalLifecycleOwner[0] final fun <get-LocalLifecycleOwner>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.lifecycle/LifecycleOwner> // androidx.lifecycle.compose/LocalLifecycleOwner.<get-LocalLifecycleOwner>|<get-LocalLifecycleOwner>(){}[0] +final val androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop // androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop|#static{}androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop[0] +final val androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop // androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop|#static{}androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop[0] -final fun (androidx.lifecycle/Lifecycle).androidx.lifecycle.compose/currentStateAsState(): androidx.compose.runtime/State<androidx.lifecycle/Lifecycle.State> // androidx.lifecycle.compose/currentStateAsState|currentStateAsState@androidx.lifecycle.Lifecycle(){}[0] -final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State = ..., kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.Flow<0:0>(0:0;androidx.lifecycle.Lifecycle;androidx.lifecycle.Lifecycle.State;kotlin.coroutines.CoroutineContext){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/LifecycleOwner = ..., androidx.lifecycle/Lifecycle.State = ..., kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.Flow<0:0>(0:0;androidx.lifecycle.LifecycleOwner;androidx.lifecycle.Lifecycle.State;kotlin.coroutines.CoroutineContext){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State = ..., kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.StateFlow<0:0>(androidx.lifecycle.Lifecycle;androidx.lifecycle.Lifecycle.State;kotlin.coroutines.CoroutineContext){0§<kotlin.Any?>}[0] -final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/LifecycleOwner = ..., androidx.lifecycle/Lifecycle.State = ..., kotlin.coroutines/CoroutineContext = ...): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.StateFlow<0:0>(androidx.lifecycle.LifecycleOwner;androidx.lifecycle.Lifecycle.State;kotlin.coroutines.CoroutineContext){0§<kotlin.Any?>}[0] -final fun androidx.lifecycle.compose/LifecycleEventEffect(androidx.lifecycle/Lifecycle.Event, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function0<kotlin/Unit>) // androidx.lifecycle.compose/LifecycleEventEffect|LifecycleEventEffect(androidx.lifecycle.Lifecycle.Event;androidx.lifecycle.LifecycleOwner;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.lifecycle.compose/LifecycleResumeEffect(androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Array<out kotlin/Any?>..., androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Array<out|kotlin.Any?>...;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleStartEffect(androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Array<out kotlin/Any?>..., androidx.lifecycle/LifecycleOwner = ..., kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Array<out|kotlin.Any?>...;androidx.lifecycle.LifecycleOwner;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>){}[0] -final fun androidx.lifecycle.compose/dropUnlessResumed(androidx.lifecycle/LifecycleOwner = ..., kotlin/Function0<kotlin/Unit>): kotlin/Function0<kotlin/Unit> // androidx.lifecycle.compose/dropUnlessResumed|dropUnlessResumed(androidx.lifecycle.LifecycleOwner;kotlin.Function0<kotlin.Unit>){}[0] -final fun androidx.lifecycle.compose/dropUnlessStarted(androidx.lifecycle/LifecycleOwner = ..., kotlin/Function0<kotlin/Unit>): kotlin/Function0<kotlin/Unit> // androidx.lifecycle.compose/dropUnlessStarted|dropUnlessStarted(androidx.lifecycle.LifecycleOwner;kotlin.Function0<kotlin.Unit>){}[0] +final fun (androidx.lifecycle/Lifecycle).androidx.lifecycle.compose/currentStateAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.lifecycle/Lifecycle.State> // androidx.lifecycle.compose/currentStateAsState|currentStateAsState@androidx.lifecycle.Lifecycle(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State?, kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.Flow<0:0>(0:0;androidx.lifecycle.Lifecycle;androidx.lifecycle.Lifecycle.State?;kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/Flow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(#A, androidx.lifecycle/LifecycleOwner?, androidx.lifecycle/Lifecycle.State?, kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.Flow<0:0>(0:0;androidx.lifecycle.LifecycleOwner?;androidx.lifecycle.Lifecycle.State?;kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/Lifecycle, androidx.lifecycle/Lifecycle.State?, kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.StateFlow<0:0>(androidx.lifecycle.Lifecycle;androidx.lifecycle.Lifecycle.State?;kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun <#A: kotlin/Any?> (kotlinx.coroutines.flow/StateFlow<#A>).androidx.lifecycle.compose/collectAsStateWithLifecycle(androidx.lifecycle/LifecycleOwner?, androidx.lifecycle/Lifecycle.State?, kotlin.coroutines/CoroutineContext?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.compose.runtime/State<#A> // androidx.lifecycle.compose/collectAsStateWithLifecycle|collectAsStateWithLifecycle@kotlinx.coroutines.flow.StateFlow<0:0>(androidx.lifecycle.LifecycleOwner?;androidx.lifecycle.Lifecycle.State?;kotlin.coroutines.CoroutineContext?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any?>}[0] +final fun androidx.lifecycle.compose/LifecycleEventEffect(androidx.lifecycle/Lifecycle.Event, androidx.lifecycle/LifecycleOwner?, kotlin/Function0<kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleEventEffect|LifecycleEventEffect(androidx.lifecycle.Lifecycle.Event;androidx.lifecycle.LifecycleOwner?;kotlin.Function0<kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleResumeEffect(androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleResumeEffect(kotlin/Array<out kotlin/Any?>..., androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleResumePauseEffectScope, androidx.lifecycle.compose/LifecyclePauseOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleResumeEffect|LifecycleResumeEffect(kotlin.Array<out|kotlin.Any?>...;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleResumePauseEffectScope,androidx.lifecycle.compose.LifecyclePauseOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleStartEffect(androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Any?, kotlin/Any?, kotlin/Any?, androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Any?;kotlin.Any?;kotlin.Any?;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/LifecycleStartEffect(kotlin/Array<out kotlin/Any?>..., androidx.lifecycle/LifecycleOwner?, kotlin/Function1<androidx.lifecycle.compose/LifecycleStartStopEffectScope, androidx.lifecycle.compose/LifecycleStopOrDisposeEffectResult>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.lifecycle.compose/LifecycleStartEffect|LifecycleStartEffect(kotlin.Array<out|kotlin.Any?>...;androidx.lifecycle.LifecycleOwner?;kotlin.Function1<androidx.lifecycle.compose.LifecycleStartStopEffectScope,androidx.lifecycle.compose.LifecycleStopOrDisposeEffectResult>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop_getter(): kotlin/Int // androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop_getter|androidx_lifecycle_compose_LifecycleResumePauseEffectScope$stableprop_getter(){}[0] +final fun androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop_getter(): kotlin/Int // androidx.lifecycle.compose/androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop_getter|androidx_lifecycle_compose_LifecycleStartStopEffectScope$stableprop_getter(){}[0] +final fun androidx.lifecycle.compose/dropUnlessResumed(androidx.lifecycle/LifecycleOwner?, kotlin/Function0<kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlin/Function0<kotlin/Unit> // androidx.lifecycle.compose/dropUnlessResumed|dropUnlessResumed(androidx.lifecycle.LifecycleOwner?;kotlin.Function0<kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.lifecycle.compose/dropUnlessStarted(androidx.lifecycle/LifecycleOwner?, kotlin/Function0<kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlin/Function0<kotlin/Unit> // androidx.lifecycle.compose/dropUnlessStarted|dropUnlessStarted(androidx.lifecycle.LifecycleOwner?;kotlin.Function0<kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0]
diff --git a/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.ignore b/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.ignore new file mode 100644 index 0000000..6006d04 --- /dev/null +++ b/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.ignore
@@ -0,0 +1,6 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration androidx.lifecycle.viewmodel.compose/viewModel(kotlin.reflect/KClass<#A>, androidx.lifecycle/ViewModelStoreOwner, kotlin/String?, androidx.lifecycle/ViewModelProvider.Factory?, androidx.lifecycle.viewmodel/CreationExtras) from androidx.lifecycle:lifecycle-viewmodel-compose +[linuxX64]: Removed declaration androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner, kotlin/String?, androidx.lifecycle/ViewModelProvider.Factory?, androidx.lifecycle.viewmodel/CreationExtras) from androidx.lifecycle:lifecycle-viewmodel-compose +[linuxX64]: Removed declaration androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner, kotlin/String?, kotlin/Function1<androidx.lifecycle.viewmodel/CreationExtras, #A>) from androidx.lifecycle:lifecycle-viewmodel-compose +[linuxX64]: Added valueParameter 0: androidx.compose.runtime/Composer? to androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.current.<get-current> +[linuxX64]: Added valueParameter 1: kotlin/Int to androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.current.<get-current> \ No newline at end of file
diff --git a/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.txt b/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.txt index f9725c9..6e92f92 100644 --- a/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.txt +++ b/lifecycle/lifecycle-viewmodel-compose/bcv/native/current.txt
@@ -8,11 +8,14 @@ // Library unique name: <androidx.lifecycle:lifecycle-viewmodel-compose> final object androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner { // androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner|null[0] final val current // androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.current|{}current[0] - final fun <get-current>(): androidx.lifecycle/ViewModelStoreOwner? // androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.current.<get-current>|<get-current>(){}[0] + final fun <get-current>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.lifecycle/ViewModelStoreOwner? // androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.current.<get-current>|<get-current>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun provides(androidx.lifecycle/ViewModelStoreOwner): androidx.compose.runtime/ProvidedValue<androidx.lifecycle/ViewModelStoreOwner?> // androidx.lifecycle.viewmodel.compose/LocalViewModelStoreOwner.provides|provides(androidx.lifecycle.ViewModelStoreOwner){}[0] } -final fun <#A: androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(kotlin.reflect/KClass<#A>, androidx.lifecycle/ViewModelStoreOwner = ..., kotlin/String? = ..., androidx.lifecycle/ViewModelProvider.Factory? = ..., androidx.lifecycle.viewmodel/CreationExtras = ...): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(kotlin.reflect.KClass<0:0>;androidx.lifecycle.ViewModelStoreOwner;kotlin.String?;androidx.lifecycle.ViewModelProvider.Factory?;androidx.lifecycle.viewmodel.CreationExtras){0§<androidx.lifecycle.ViewModel>}[0] -final inline fun <#A: reified androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner = ..., kotlin/String? = ..., androidx.lifecycle/ViewModelProvider.Factory? = ..., androidx.lifecycle.viewmodel/CreationExtras = ...): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(androidx.lifecycle.ViewModelStoreOwner;kotlin.String?;androidx.lifecycle.ViewModelProvider.Factory?;androidx.lifecycle.viewmodel.CreationExtras){0§<androidx.lifecycle.ViewModel>}[0] -final inline fun <#A: reified androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner = ..., kotlin/String? = ..., noinline kotlin/Function1<androidx.lifecycle.viewmodel/CreationExtras, #A>): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(androidx.lifecycle.ViewModelStoreOwner;kotlin.String?;kotlin.Function1<androidx.lifecycle.viewmodel.CreationExtras,0:0>){0§<androidx.lifecycle.ViewModel>}[0] +final val androidx.lifecycle.viewmodel.compose/androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop // androidx.lifecycle.viewmodel.compose/androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop|#static{}androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop[0] + +final fun <#A: androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(kotlin.reflect/KClass<#A>, androidx.lifecycle/ViewModelStoreOwner?, kotlin/String?, androidx.lifecycle/ViewModelProvider.Factory?, androidx.lifecycle.viewmodel/CreationExtras?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(kotlin.reflect.KClass<0:0>;androidx.lifecycle.ViewModelStoreOwner?;kotlin.String?;androidx.lifecycle.ViewModelProvider.Factory?;androidx.lifecycle.viewmodel.CreationExtras?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<androidx.lifecycle.ViewModel>}[0] +final fun androidx.lifecycle.viewmodel.compose/androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop_getter(): kotlin/Int // androidx.lifecycle.viewmodel.compose/androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop_getter|androidx_lifecycle_viewmodel_compose_LocalViewModelStoreOwner$stableprop_getter(){}[0] +final inline fun <#A: reified androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner?, kotlin/String?, androidx.lifecycle/ViewModelProvider.Factory?, androidx.lifecycle.viewmodel/CreationExtras?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(androidx.lifecycle.ViewModelStoreOwner?;kotlin.String?;androidx.lifecycle.ViewModelProvider.Factory?;androidx.lifecycle.viewmodel.CreationExtras?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<androidx.lifecycle.ViewModel>}[0] +final inline fun <#A: reified androidx.lifecycle/ViewModel> androidx.lifecycle.viewmodel.compose/viewModel(androidx.lifecycle/ViewModelStoreOwner?, kotlin/String?, noinline kotlin/Function1<androidx.lifecycle.viewmodel/CreationExtras, #A>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): #A // androidx.lifecycle.viewmodel.compose/viewModel|viewModel(androidx.lifecycle.ViewModelStoreOwner?;kotlin.String?;kotlin.Function1<androidx.lifecycle.viewmodel.CreationExtras,0:0>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<androidx.lifecycle.ViewModel>}[0]
diff --git a/navigation/navigation-compose/bcv/native/current.ignore b/navigation/navigation-compose/bcv/native/current.ignore new file mode 100644 index 0000000..eef5416 --- /dev/null +++ b/navigation/navigation-compose/bcv/native/current.ignore
@@ -0,0 +1,28 @@ +// Baseline format: 1.0 +[linuxX64]: Removed declaration (androidx.navigation/NavBackStackEntry).androidx.navigation.compose/LocalOwnersProvider(androidx.compose.runtime.saveable/SaveableStateHolder, kotlin/Function0<kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavController).androidx.navigation.compose/currentBackStackEntryAsState() from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument>, kotlin.collections/List<androidx.navigation/NavDeepLink>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument>, kotlin.collections/List<androidx.navigation/NavDeepLink>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument>, kotlin.collections/List<androidx.navigation/NavDeepLink>, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument>, kotlin.collections/List<androidx.navigation/NavDeepLink>, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin.collections/List<androidx.navigation/NavDeepLink>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin.collections/List<androidx.navigation/NavDeepLink>, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/DialogHost(androidx.navigation.compose/DialogNavigator) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin.reflect/KClass<*>, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin.reflect/KClass<*>?, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/Any, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin.reflect/KClass<*>?, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/String?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier, androidx.compose.ui/Alignment, kotlin/String?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier, kotlin/String?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration androidx.navigation.compose/rememberNavController(kotlin/Array<out androidx.navigation/Navigator<out androidx.navigation/NavDestination>>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin.collections/List<androidx.navigation/NavDeepLink>, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin.collections/List<androidx.navigation/NavDeepLink>, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation:navigation-compose +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/ComposeNavigator.Destination +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/ComposeNavigator.Destination +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/ComposeNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/ComposeNavigatorDestinationBuilder +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/ComposeNavigator, kotlin/String, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/ComposeNavigatorDestinationBuilder +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/DialogNavigator, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/DialogNavigator.Destination +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/DialogNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/DialogNavigatorDestinationBuilder +[linuxX64]: Removed declaration <init>(androidx.navigation.compose/DialogNavigator, kotlin/String, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) from androidx.navigation.compose/DialogNavigatorDestinationBuilder \ No newline at end of file
diff --git a/navigation/navigation-compose/bcv/native/current.txt b/navigation/navigation-compose/bcv/native/current.txt index 68a98b0..0471b0b 100644 --- a/navigation/navigation-compose/bcv/native/current.txt +++ b/navigation/navigation-compose/bcv/native/current.txt
@@ -19,14 +19,14 @@ final fun prepareForTransition(androidx.navigation/NavBackStackEntry) // androidx.navigation.compose/ComposeNavigator.prepareForTransition|prepareForTransition(androidx.navigation.NavBackStackEntry){}[0] final class Destination : androidx.navigation/NavDestination { // androidx.navigation.compose/ComposeNavigator.Destination|null[0] - constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigator.Destination.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] - constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigator.Destination.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigator.Destination.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigator.Destination.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } } final class androidx.navigation.compose/ComposeNavigatorDestinationBuilder : androidx.navigation/NavDestinationBuilder<androidx.navigation.compose/ComposeNavigator.Destination> { // androidx.navigation.compose/ComposeNavigatorDestinationBuilder|null[0] - constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.reflect.KClass<*>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] - constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/String, kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.String;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.reflect.KClass<*>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/ComposeNavigator, kotlin/String, kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.ComposeNavigator;kotlin.String;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final var enterTransition // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.enterTransition|{}enterTransition[0] final fun <get-enterTransition>(): kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? // androidx.navigation.compose/ComposeNavigatorDestinationBuilder.enterTransition.<get-enterTransition>|<get-enterTransition>(){}[0] @@ -55,40 +55,63 @@ final fun popBackStack(androidx.navigation/NavBackStackEntry, kotlin/Boolean) // androidx.navigation.compose/DialogNavigator.popBackStack|popBackStack(androidx.navigation.NavBackStackEntry;kotlin.Boolean){}[0] final class Destination : androidx.navigation/FloatingWindow, androidx.navigation/NavDestination { // androidx.navigation.compose/DialogNavigator.Destination|null[0] - constructor <init>(androidx.navigation.compose/DialogNavigator, androidx.compose.ui.window/DialogProperties = ..., kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/DialogNavigator.Destination.<init>|<init>(androidx.navigation.compose.DialogNavigator;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/DialogNavigator, androidx.compose.ui.window/DialogProperties = ..., kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/DialogNavigator.Destination.<init>|<init>(androidx.navigation.compose.DialogNavigator;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } } final class androidx.navigation.compose/DialogNavigatorDestinationBuilder : androidx.navigation/NavDestinationBuilder<androidx.navigation.compose/DialogNavigator.Destination> { // androidx.navigation.compose/DialogNavigatorDestinationBuilder|null[0] - constructor <init>(androidx.navigation.compose/DialogNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/DialogNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.DialogNavigator;kotlin.reflect.KClass<*>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] - constructor <init>(androidx.navigation.compose/DialogNavigator, kotlin/String, androidx.compose.ui.window/DialogProperties, kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/DialogNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.DialogNavigator;kotlin.String;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/DialogNavigator, kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>, androidx.compose.ui.window/DialogProperties, kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/DialogNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.DialogNavigator;kotlin.reflect.KClass<*>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] + constructor <init>(androidx.navigation.compose/DialogNavigator, kotlin/String, androidx.compose.ui.window/DialogProperties, kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/DialogNavigatorDestinationBuilder.<init>|<init>(androidx.navigation.compose.DialogNavigator;kotlin.String;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] } -final fun (androidx.navigation/NavBackStackEntry).androidx.navigation.compose/LocalOwnersProvider(androidx.compose.runtime.saveable/SaveableStateHolder, kotlin/Function0<kotlin/Unit>) // androidx.navigation.compose/LocalOwnersProvider|LocalOwnersProvider@androidx.navigation.NavBackStackEntry(androidx.compose.runtime.saveable.SaveableStateHolder;kotlin.Function0<kotlin.Unit>){}[0] -final fun (androidx.navigation/NavController).androidx.navigation.compose/currentBackStackEntryAsState(): androidx.compose.runtime/State<androidx.navigation/NavBackStackEntry?> // androidx.navigation.compose/currentBackStackEntryAsState|currentBackStackEntryAsState@androidx.navigation.NavController(){}[0] -final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] -final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] -final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] -final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){}[0] +final val androidx.navigation.compose.internal/androidx_navigation_compose_internal_BackEventCompat$stableprop // androidx.navigation.compose.internal/androidx_navigation_compose_internal_BackEventCompat$stableprop|#static{}androidx_navigation_compose_internal_BackEventCompat$stableprop[0] +final val androidx.navigation.compose.internal/androidx_navigation_compose_internal_WeakReference$stableprop // androidx.navigation.compose.internal/androidx_navigation_compose_internal_WeakReference$stableprop|#static{}androidx_navigation_compose_internal_WeakReference$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_BackStackEntryIdViewModel$stableprop // androidx.navigation.compose/androidx_navigation_compose_BackStackEntryIdViewModel$stableprop|#static{}androidx_navigation_compose_BackStackEntryIdViewModel$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator$stableprop // androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator$stableprop|#static{}androidx_navigation_compose_ComposeNavGraphNavigator$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop // androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop|#static{}androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator$stableprop // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator$stableprop|#static{}androidx_navigation_compose_ComposeNavigator$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop|#static{}androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator_Destination$stableprop // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator_Destination$stableprop|#static{}androidx_navigation_compose_ComposeNavigator_Destination$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_DialogNavigator$stableprop // androidx.navigation.compose/androidx_navigation_compose_DialogNavigator$stableprop|#static{}androidx_navigation_compose_DialogNavigator$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop // androidx.navigation.compose/androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop|#static{}androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop[0] +final val androidx.navigation.compose/androidx_navigation_compose_DialogNavigator_Destination$stableprop // androidx.navigation.compose/androidx_navigation_compose_DialogNavigator_Destination$stableprop|#static{}androidx_navigation_compose_DialogNavigator_Destination$stableprop[0] + +final fun (androidx.navigation/NavBackStackEntry).androidx.navigation.compose/LocalOwnersProvider(androidx.compose.runtime.saveable/SaveableStateHolder, kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.navigation.compose/LocalOwnersProvider|LocalOwnersProvider@androidx.navigation.NavBackStackEntry(androidx.compose.runtime.saveable.SaveableStateHolder;kotlin.Function2<androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.navigation/NavController).androidx.navigation.compose/currentBackStackEntryAsState(androidx.compose.runtime/Composer?, kotlin/Int): androidx.compose.runtime/State<androidx.navigation/NavBackStackEntry?> // androidx.navigation.compose/currentBackStackEntryAsState|currentBackStackEntryAsState@androidx.navigation.NavController(androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] +final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] +final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] +final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin/String, kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin/String, kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] final fun (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin/String, kotlin/String, kotlin.collections/List<androidx.navigation/NamedNavArgument> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.String;kotlin.String;kotlin.collections.List<androidx.navigation.NamedNavArgument>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin.reflect/KClass<*>, kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<*>;kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){0§<kotlin.Any>}[0] final fun <#A: kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin/Any, kotlin.reflect/KClass<#A>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.Any;kotlin.reflect.KClass<0:0>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){0§<kotlin.Any>}[0] -final fun androidx.navigation.compose/DialogHost(androidx.navigation.compose/DialogNavigator) // androidx.navigation.compose/DialogHost|DialogHost(androidx.navigation.compose.DialogNavigator){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier = ...) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ...) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ...) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin.reflect/KClass<*>, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin.reflect/KClass<*>? = ..., kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.reflect.KClass<*>;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.reflect.KClass<*>?;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/Any, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin.reflect/KClass<*>? = ..., kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.Any;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.reflect.KClass<*>?;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/String? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.String?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/String? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition> = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.String?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier = ..., kotlin/String? = ..., kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier;kotlin.String?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){}[0] -final fun androidx.navigation.compose/rememberNavController(kotlin/Array<out androidx.navigation/Navigator<out androidx.navigation/NavDestination>>...): androidx.navigation/NavHostController // androidx.navigation.compose/rememberNavController|rememberNavController(kotlin.Array<out|androidx.navigation.Navigator<out|androidx.navigation.NavDestination>>...){}[0] -final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., noinline kotlin/Function2<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function2<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,kotlin.Unit>){0§<kotlin.Any>}[0] -final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., noinline kotlin/Function1<androidx.navigation/NavBackStackEntry, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function1<androidx.navigation.NavBackStackEntry,kotlin.Unit>){0§<kotlin.Any>}[0] +final fun androidx.navigation.compose.internal/androidx_navigation_compose_internal_BackEventCompat$stableprop_getter(): kotlin/Int // androidx.navigation.compose.internal/androidx_navigation_compose_internal_BackEventCompat$stableprop_getter|androidx_navigation_compose_internal_BackEventCompat$stableprop_getter(){}[0] +final fun androidx.navigation.compose.internal/androidx_navigation_compose_internal_WeakReference$stableprop_getter(): kotlin/Int // androidx.navigation.compose.internal/androidx_navigation_compose_internal_WeakReference$stableprop_getter|androidx_navigation_compose_internal_WeakReference$stableprop_getter(){}[0] +final fun androidx.navigation.compose/DialogHost(androidx.navigation.compose/DialogNavigator, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.navigation.compose/DialogHost|DialogHost(androidx.navigation.compose.DialogNavigator;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, androidx.navigation/NavGraph, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;androidx.navigation.NavGraph;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin.reflect/KClass<*>, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin.reflect/KClass<*>?, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.reflect.KClass<*>;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.reflect.KClass<*>?;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/Any, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin.reflect/KClass<*>?, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.Any;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.reflect.KClass<*>?;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/String?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.String?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/String?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition>?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.String?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/NavHost(androidx.navigation/NavHostController, kotlin/String, androidx.compose.ui/Modifier?, kotlin/String?, kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation.compose/NavHost|NavHost(androidx.navigation.NavHostController;kotlin.String;androidx.compose.ui.Modifier?;kotlin.String?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_BackStackEntryIdViewModel$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_BackStackEntryIdViewModel$stableprop_getter|androidx_navigation_compose_BackStackEntryIdViewModel$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator$stableprop_getter|androidx_navigation_compose_ComposeNavGraphNavigator$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop_getter|androidx_navigation_compose_ComposeNavGraphNavigator_ComposeNavGraph$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator$stableprop_getter|androidx_navigation_compose_ComposeNavigator$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop_getter|androidx_navigation_compose_ComposeNavigatorDestinationBuilder$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator_Destination$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_ComposeNavigator_Destination$stableprop_getter|androidx_navigation_compose_ComposeNavigator_Destination$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_DialogNavigator$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_DialogNavigator$stableprop_getter|androidx_navigation_compose_DialogNavigator$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop_getter|androidx_navigation_compose_DialogNavigatorDestinationBuilder$stableprop_getter(){}[0] +final fun androidx.navigation.compose/androidx_navigation_compose_DialogNavigator_Destination$stableprop_getter(): kotlin/Int // androidx.navigation.compose/androidx_navigation_compose_DialogNavigator_Destination$stableprop_getter|androidx_navigation_compose_DialogNavigator_Destination$stableprop_getter(){}[0] +final fun androidx.navigation.compose/rememberNavController(kotlin/Array<out androidx.navigation/Navigator<out androidx.navigation/NavDestination>>..., androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigation/NavHostController // androidx.navigation.compose/rememberNavController|rememberNavController(kotlin.Array<out|androidx.navigation.Navigator<out|androidx.navigation.NavDestination>>...;androidx.compose.runtime.Composer?;kotlin.Int){}[0] +final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/composable(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., noinline kotlin/Function4<androidx.compose.animation/AnimatedContentScope, androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/composable|composable@androidx.navigation.NavGraphBuilder(kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function4<androidx.compose.animation.AnimatedContentScope,androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] +final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/dialog(kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., androidx.compose.ui.window/DialogProperties = ..., noinline kotlin/Function3<androidx.navigation/NavBackStackEntry, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation.compose/dialog|dialog@androidx.navigation.NavGraphBuilder(kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;androidx.compose.ui.window.DialogProperties;kotlin.Function3<androidx.navigation.NavBackStackEntry,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin.reflect/KClass<*>, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., noinline kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.reflect.KClass<*>;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){0§<kotlin.Any>}[0] final inline fun <#A: reified kotlin/Any> (androidx.navigation/NavGraphBuilder).androidx.navigation.compose/navigation(kotlin/Any, kotlin.collections/Map<kotlin.reflect/KType, androidx.navigation/NavType<*>> = ..., kotlin.collections/List<androidx.navigation/NavDeepLink> = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/EnterTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/ExitTransition?>? = ..., noinline kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<androidx.navigation/NavBackStackEntry>, androidx.compose.animation/SizeTransform?>? = ..., noinline kotlin/Function1<androidx.navigation/NavGraphBuilder, kotlin/Unit>) // androidx.navigation.compose/navigation|navigation@androidx.navigation.NavGraphBuilder(kotlin.Any;kotlin.collections.Map<kotlin.reflect.KType,androidx.navigation.NavType<*>>;kotlin.collections.List<androidx.navigation.NavDeepLink>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.EnterTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.ExitTransition?>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<androidx.navigation.NavBackStackEntry>,androidx.compose.animation.SizeTransform?>?;kotlin.Function1<androidx.navigation.NavGraphBuilder,kotlin.Unit>){0§<kotlin.Any>}[0] final inline fun androidx.navigation.compose.internal/implementedInJetBrainsFork(): kotlin/Nothing // androidx.navigation.compose.internal/implementedInJetBrainsFork|implementedInJetBrainsFork(){}[0]
diff --git a/navigation3/navigation3-runtime/bcv/native/current.txt b/navigation3/navigation3-runtime/bcv/native/current.txt index 8142653..1c2dea5 100644 --- a/navigation3/navigation3-runtime/bcv/native/current.txt +++ b/navigation3/navigation3-runtime/bcv/native/current.txt
@@ -13,32 +13,32 @@ abstract interface androidx.navigation3.runtime/NavKey // androidx.navigation3.runtime/NavKey|null[0] final class <#A: kotlin/Any> androidx.navigation3.runtime/EntryClassProvider { // androidx.navigation3.runtime/EntryClassProvider|null[0] - constructor <init>(kotlin.reflect/KClass<#A>, kotlin/Function1<#A, kotlin/Any>, kotlin.collections/Map<kotlin/String, kotlin/Any>, kotlin/Function1<#A, kotlin/Unit>) // androidx.navigation3.runtime/EntryClassProvider.<init>|<init>(kotlin.reflect.KClass<1:0>;kotlin.Function1<1:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<1:0,kotlin.Unit>){}[0] + constructor <init>(kotlin.reflect/KClass<#A>, kotlin/Function1<#A, kotlin/Any>, kotlin.collections/Map<kotlin/String, kotlin/Any>, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/EntryClassProvider.<init>|<init>(kotlin.reflect.KClass<1:0>;kotlin.Function1<1:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<1:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final val clazz // androidx.navigation3.runtime/EntryClassProvider.clazz|{}clazz[0] final fun <get-clazz>(): kotlin.reflect/KClass<#A> // androidx.navigation3.runtime/EntryClassProvider.clazz.<get-clazz>|<get-clazz>(){}[0] final val clazzContentKey // androidx.navigation3.runtime/EntryClassProvider.clazzContentKey|{}clazzContentKey[0] final fun <get-clazzContentKey>(): kotlin/Function1<#A, kotlin/Any> // androidx.navigation3.runtime/EntryClassProvider.clazzContentKey.<get-clazzContentKey>|<get-clazzContentKey>(){}[0] final val content // androidx.navigation3.runtime/EntryClassProvider.content|{}content[0] - final fun <get-content>(): kotlin/Function1<#A, kotlin/Unit> // androidx.navigation3.runtime/EntryClassProvider.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.navigation3.runtime/EntryClassProvider.content.<get-content>|<get-content>(){}[0] final val metadata // androidx.navigation3.runtime/EntryClassProvider.metadata|{}metadata[0] final fun <get-metadata>(): kotlin.collections/Map<kotlin/String, kotlin/Any> // androidx.navigation3.runtime/EntryClassProvider.metadata.<get-metadata>|<get-metadata>(){}[0] final fun component1(): kotlin.reflect/KClass<#A> // androidx.navigation3.runtime/EntryClassProvider.component1|component1(){}[0] final fun component2(): kotlin/Function1<#A, kotlin/Any> // androidx.navigation3.runtime/EntryClassProvider.component2|component2(){}[0] final fun component3(): kotlin.collections/Map<kotlin/String, kotlin/Any> // androidx.navigation3.runtime/EntryClassProvider.component3|component3(){}[0] - final fun component4(): kotlin/Function1<#A, kotlin/Unit> // androidx.navigation3.runtime/EntryClassProvider.component4|component4(){}[0] - final fun copy(kotlin.reflect/KClass<#A> = ..., kotlin/Function1<#A, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A, kotlin/Unit> = ...): androidx.navigation3.runtime/EntryClassProvider<#A> // androidx.navigation3.runtime/EntryClassProvider.copy|copy(kotlin.reflect.KClass<1:0>;kotlin.Function1<1:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<1:0,kotlin.Unit>){}[0] + final fun component4(): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.navigation3.runtime/EntryClassProvider.component4|component4(){}[0] + final fun copy(kotlin.reflect/KClass<#A> = ..., kotlin/Function1<#A, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> = ...): androidx.navigation3.runtime/EntryClassProvider<#A> // androidx.navigation3.runtime/EntryClassProvider.copy|copy(kotlin.reflect.KClass<1:0>;kotlin.Function1<1:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<1:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final fun equals(kotlin/Any?): kotlin/Boolean // androidx.navigation3.runtime/EntryClassProvider.equals|equals(kotlin.Any?){}[0] final fun hashCode(): kotlin/Int // androidx.navigation3.runtime/EntryClassProvider.hashCode|hashCode(){}[0] final fun toString(): kotlin/String // androidx.navigation3.runtime/EntryClassProvider.toString|toString(){}[0] } final class <#A: kotlin/Any> androidx.navigation3.runtime/EntryProvider { // androidx.navigation3.runtime/EntryProvider|null[0] - constructor <init>(#A, kotlin/Any, kotlin.collections/Map<kotlin/String, kotlin/Any>, kotlin/Function1<#A, kotlin/Unit>) // androidx.navigation3.runtime/EntryProvider.<init>|<init>(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<1:0,kotlin.Unit>){}[0] + constructor <init>(#A, kotlin/Any, kotlin.collections/Map<kotlin/String, kotlin/Any>, kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/EntryProvider.<init>|<init>(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<1:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final val content // androidx.navigation3.runtime/EntryProvider.content|{}content[0] - final fun <get-content>(): kotlin/Function1<#A, kotlin/Unit> // androidx.navigation3.runtime/EntryProvider.content.<get-content>|<get-content>(){}[0] + final fun <get-content>(): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.navigation3.runtime/EntryProvider.content.<get-content>|<get-content>(){}[0] final val contentKey // androidx.navigation3.runtime/EntryProvider.contentKey|{}contentKey[0] final fun <get-contentKey>(): kotlin/Any // androidx.navigation3.runtime/EntryProvider.contentKey.<get-contentKey>|<get-contentKey>(){}[0] final val key // androidx.navigation3.runtime/EntryProvider.key|{}key[0] @@ -49,8 +49,8 @@ final fun component1(): #A // androidx.navigation3.runtime/EntryProvider.component1|component1(){}[0] final fun component2(): kotlin/Any // androidx.navigation3.runtime/EntryProvider.component2|component2(){}[0] final fun component3(): kotlin.collections/Map<kotlin/String, kotlin/Any> // androidx.navigation3.runtime/EntryProvider.component3|component3(){}[0] - final fun component4(): kotlin/Function1<#A, kotlin/Unit> // androidx.navigation3.runtime/EntryProvider.component4|component4(){}[0] - final fun copy(#A = ..., kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A, kotlin/Unit> = ...): androidx.navigation3.runtime/EntryProvider<#A> // androidx.navigation3.runtime/EntryProvider.copy|copy(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<1:0,kotlin.Unit>){}[0] + final fun component4(): kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.navigation3.runtime/EntryProvider.component4|component4(){}[0] + final fun copy(#A = ..., kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> = ...): androidx.navigation3.runtime/EntryProvider<#A> // androidx.navigation3.runtime/EntryProvider.copy|copy(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<1:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final fun equals(kotlin/Any?): kotlin/Boolean // androidx.navigation3.runtime/EntryProvider.equals|equals(kotlin.Any?){}[0] final fun hashCode(): kotlin/Int // androidx.navigation3.runtime/EntryProvider.hashCode|hashCode(){}[0] final fun toString(): kotlin/String // androidx.navigation3.runtime/EntryProvider.toString|toString(){}[0] @@ -59,15 +59,15 @@ final class <#A: kotlin/Any> androidx.navigation3.runtime/EntryProviderBuilder { // androidx.navigation3.runtime/EntryProviderBuilder|null[0] constructor <init>(kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>>) // androidx.navigation3.runtime/EntryProviderBuilder.<init>|<init>(kotlin.Function1<1:0,androidx.navigation3.runtime.NavEntry<1:0>>){}[0] - final fun <#A1: kotlin/Any> addEntryProvider(#A1, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A1, kotlin/Unit>) // androidx.navigation3.runtime/EntryProviderBuilder.addEntryProvider|addEntryProvider(0:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any>}[0] - final fun <#A1: kotlin/Any> addEntryProvider(kotlin.reflect/KClass<#A1>, kotlin/Function1<#A1, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A1, kotlin/Unit>) // androidx.navigation3.runtime/EntryProviderBuilder.addEntryProvider|addEntryProvider(kotlin.reflect.KClass<0:0>;kotlin.Function1<0:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any>}[0] + final fun <#A1: kotlin/Any> addEntryProvider(#A1, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A1, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/EntryProviderBuilder.addEntryProvider|addEntryProvider(0:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] + final fun <#A1: kotlin/Any> addEntryProvider(kotlin.reflect/KClass<#A1>, kotlin/Function1<#A1, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A1, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/EntryProviderBuilder.addEntryProvider|addEntryProvider(kotlin.reflect.KClass<0:0>;kotlin.Function1<0:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] final fun build(): kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>> // androidx.navigation3.runtime/EntryProviderBuilder.build|build(){}[0] } final class <#A: kotlin/Any> androidx.navigation3.runtime/NavEntryDecorator // androidx.navigation3.runtime/NavEntryDecorator|null[0] open class <#A: kotlin/Any> androidx.navigation3.runtime/NavEntry { // androidx.navigation3.runtime/NavEntry|null[0] - constructor <init>(#A, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A, kotlin/Unit>) // androidx.navigation3.runtime/NavEntry.<init>|<init>(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<1:0,kotlin.Unit>){}[0] + constructor <init>(#A, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/NavEntry.<init>|<init>(1:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<1:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){}[0] final val contentKey // androidx.navigation3.runtime/NavEntry.contentKey|{}contentKey[0] final fun <get-contentKey>(): kotlin/Any // androidx.navigation3.runtime/NavEntry.contentKey.<get-contentKey>|<get-contentKey>(){}[0] @@ -75,7 +75,7 @@ open fun <get-metadata>(): kotlin.collections/Map<kotlin/String, kotlin/Any> // androidx.navigation3.runtime/NavEntry.metadata.<get-metadata>|<get-metadata>(){}[0] final fun isInBackStack(kotlin.collections/List<kotlin/Any>): kotlin/Boolean // androidx.navigation3.runtime/NavEntry.isInBackStack|isInBackStack(kotlin.collections.List<kotlin.Any>){}[0] - open fun Content() // androidx.navigation3.runtime/NavEntry.Content|Content(){}[0] + open fun Content(androidx.compose.runtime/Composer?, kotlin/Int) // androidx.navigation3.runtime/NavEntry.Content|Content(androidx.compose.runtime.Composer?;kotlin.Int){}[0] } open class <#A: kotlin/Any> androidx.navigation3.runtime/NavEntryWrapper : androidx.navigation3.runtime/NavEntry<#A> { // androidx.navigation3.runtime/NavEntryWrapper|null[0] @@ -85,12 +85,27 @@ final fun <get-navEntry>(): androidx.navigation3.runtime/NavEntry<#A> // androidx.navigation3.runtime/NavEntryWrapper.navEntry.<get-navEntry>|<get-navEntry>(){}[0] } -final fun <#A: kotlin/Any> (androidx.navigation3.runtime/EntryProviderBuilder<#A>).androidx.navigation3.runtime/entry(#A, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function1<#A, kotlin/Unit>) // androidx.navigation3.runtime/entry|entry@androidx.navigation3.runtime.EntryProviderBuilder<0:0>(0:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.navigation3.runtime/DecorateNavEntry(androidx.navigation3.runtime/NavEntry<#A>, kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>>) // androidx.navigation3.runtime/DecorateNavEntry|DecorateNavEntry(androidx.navigation3.runtime.NavEntry<0:0>;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.navigation3.runtime/DecoratedNavEntryProvider(kotlin.collections/List<#A>, kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<out #A>>, kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>> = ..., kotlin/Function1<kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Unit>) // androidx.navigation3.runtime/DecoratedNavEntryProvider|DecoratedNavEntryProvider(kotlin.collections.List<0:0>;kotlin.Function1<0:0,androidx.navigation3.runtime.NavEntry<out|0:0>>;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>;kotlin.Function1<kotlin.collections.List<androidx.navigation3.runtime.NavEntry<0:0>>,kotlin.Unit>){0§<kotlin.Any>}[0] -final fun <#A: kotlin/Any> androidx.navigation3.runtime/navEntryDecorator(kotlin/Function1<kotlin/Any, kotlin/Unit> = ..., kotlin/Function1<androidx.navigation3.runtime/NavEntry<#A>, kotlin/Unit>): androidx.navigation3.runtime/NavEntryDecorator<#A> // androidx.navigation3.runtime/navEntryDecorator|navEntryDecorator(kotlin.Function1<kotlin.Any,kotlin.Unit>;kotlin.Function1<androidx.navigation3.runtime.NavEntry<0:0>,kotlin.Unit>){0§<kotlin.Any>}[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_EntryClassProvider$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryClassProvider$stableprop|#static{}androidx_navigation3_runtime_EntryClassProvider$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProvider$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProvider$stableprop|#static{}androidx_navigation3_runtime_EntryProvider$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProviderBuilder$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProviderBuilder$stableprop|#static{}androidx_navigation3_runtime_EntryProviderBuilder$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop|#static{}androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntry$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntry$stableprop|#static{}androidx_navigation3_runtime_NavEntry$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryDecorator$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryDecorator$stableprop|#static{}androidx_navigation3_runtime_NavEntryDecorator$stableprop[0] +final val androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryWrapper$stableprop // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryWrapper$stableprop|#static{}androidx_navigation3_runtime_NavEntryWrapper$stableprop[0] + +final fun <#A: kotlin/Any> (androidx.navigation3.runtime/EntryProviderBuilder<#A>).androidx.navigation3.runtime/entry(#A, kotlin/Any = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/entry|entry@androidx.navigation3.runtime.EntryProviderBuilder<0:0>(0:0;kotlin.Any;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.navigation3.runtime/DecorateNavEntry(androidx.navigation3.runtime/NavEntry<#A>, kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>>, androidx.compose.runtime/Composer?, kotlin/Int) // androidx.navigation3.runtime/DecorateNavEntry|DecorateNavEntry(androidx.navigation3.runtime.NavEntry<0:0>;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>;androidx.compose.runtime.Composer?;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.navigation3.runtime/DecoratedNavEntryProvider(kotlin.collections/List<#A>, kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<out #A>>, kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>>?, kotlin/Function3<kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigation3.runtime/DecoratedNavEntryProvider|DecoratedNavEntryProvider(kotlin.collections.List<0:0>;kotlin.Function1<0:0,androidx.navigation3.runtime.NavEntry<out|0:0>>;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>?;kotlin.Function3<kotlin.collections.List<androidx.navigation3.runtime.NavEntry<0:0>>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.navigation3.runtime/navEntryDecorator(kotlin/Function1<kotlin/Any, kotlin/Unit> = ..., kotlin/Function3<androidx.navigation3.runtime/NavEntry<#A>, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>): androidx.navigation3.runtime/NavEntryDecorator<#A> // androidx.navigation3.runtime/navEntryDecorator|navEntryDecorator(kotlin.Function1<kotlin.Any,kotlin.Unit>;kotlin.Function3<androidx.navigation3.runtime.NavEntry<0:0>,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0] final fun androidx.navigation3.runtime/SavedStateNavEntryDecorator(androidx.compose.runtime.saveable/SaveableStateHolder): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.runtime/SavedStateNavEntryDecorator|SavedStateNavEntryDecorator(androidx.compose.runtime.saveable.SaveableStateHolder){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_EntryClassProvider$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryClassProvider$stableprop_getter|androidx_navigation3_runtime_EntryClassProvider$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProvider$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProvider$stableprop_getter|androidx_navigation3_runtime_EntryProvider$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProviderBuilder$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_EntryProviderBuilder$stableprop_getter|androidx_navigation3_runtime_EntryProviderBuilder$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop_getter|androidx_navigation3_runtime_EntrySavedStateRegistry$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntry$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntry$stableprop_getter|androidx_navigation3_runtime_NavEntry$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryDecorator$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryDecorator$stableprop_getter|androidx_navigation3_runtime_NavEntryDecorator$stableprop_getter(){}[0] +final fun androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryWrapper$stableprop_getter(): kotlin/Int // androidx.navigation3.runtime/androidx_navigation3_runtime_NavEntryWrapper$stableprop_getter|androidx_navigation3_runtime_NavEntryWrapper$stableprop_getter(){}[0] final fun androidx.navigation3.runtime/defaultContentKey(kotlin/Any): kotlin/Any // androidx.navigation3.runtime/defaultContentKey|defaultContentKey(kotlin.Any){}[0] -final fun androidx.navigation3.runtime/rememberSavedStateNavEntryDecorator(androidx.compose.runtime.saveable/SaveableStateHolder = ...): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.runtime/rememberSavedStateNavEntryDecorator|rememberSavedStateNavEntryDecorator(androidx.compose.runtime.saveable.SaveableStateHolder){}[0] +final fun androidx.navigation3.runtime/rememberSavedStateNavEntryDecorator(androidx.compose.runtime.saveable/SaveableStateHolder?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.runtime/rememberSavedStateNavEntryDecorator|rememberSavedStateNavEntryDecorator(androidx.compose.runtime.saveable.SaveableStateHolder?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final inline fun <#A: kotlin/Any> androidx.navigation3.runtime/entryProvider(noinline kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>> = ..., kotlin/Function1<androidx.navigation3.runtime/EntryProviderBuilder<#A>, kotlin/Unit>): kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>> // androidx.navigation3.runtime/entryProvider|entryProvider(kotlin.Function1<0:0,androidx.navigation3.runtime.NavEntry<0:0>>;kotlin.Function1<androidx.navigation3.runtime.EntryProviderBuilder<0:0>,kotlin.Unit>){0§<kotlin.Any>}[0] -final inline fun <#A: reified kotlin/Any> (androidx.navigation3.runtime/EntryProviderBuilder<*>).androidx.navigation3.runtime/entry(noinline kotlin/Function1<#A, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., noinline kotlin/Function1<#A, kotlin/Unit>) // androidx.navigation3.runtime/entry|entry@androidx.navigation3.runtime.EntryProviderBuilder<*>(kotlin.Function1<0:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function1<0:0,kotlin.Unit>){0§<kotlin.Any>}[0] +final inline fun <#A: reified kotlin/Any> (androidx.navigation3.runtime/EntryProviderBuilder<*>).androidx.navigation3.runtime/entry(noinline kotlin/Function1<#A, kotlin/Any> = ..., kotlin.collections/Map<kotlin/String, kotlin/Any> = ..., noinline kotlin/Function3<#A, androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit>) // androidx.navigation3.runtime/entry|entry@androidx.navigation3.runtime.EntryProviderBuilder<*>(kotlin.Function1<0:0,kotlin.Any>;kotlin.collections.Map<kotlin.String,kotlin.Any>;kotlin.Function3<0:0,androidx.compose.runtime.Composer,kotlin.Int,kotlin.Unit>){0§<kotlin.Any>}[0]
diff --git a/navigation3/navigation3-ui/bcv/native/current.txt b/navigation3/navigation3-ui/bcv/native/current.txt index b24019d..1e94e06 100644 --- a/navigation3/navigation3-ui/bcv/native/current.txt +++ b/navigation3/navigation3-ui/bcv/native/current.txt
@@ -7,7 +7,7 @@ // Library unique name: <androidx.navigation3:navigation3-ui> abstract fun interface <#A: kotlin/Any> androidx.navigation3.ui/SceneStrategy { // androidx.navigation3.ui/SceneStrategy|null[0] - abstract fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>): androidx.navigation3.ui/Scene<#A>? // androidx.navigation3.ui/SceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>){}[0] + abstract fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigation3.ui/Scene<#A>? // androidx.navigation3.ui/SceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] open fun then(androidx.navigation3.ui/SceneStrategy<#A>): androidx.navigation3.ui/SceneStrategy<#A> // androidx.navigation3.ui/SceneStrategy.then|then(androidx.navigation3.ui.SceneStrategy<1:0>){}[0] } @@ -18,7 +18,7 @@ abstract interface <#A: kotlin/Any> androidx.navigation3.ui/Scene { // androidx.navigation3.ui/Scene|null[0] abstract val content // androidx.navigation3.ui/Scene.content|{}content[0] - abstract fun <get-content>(): kotlin/Function0<kotlin/Unit> // androidx.navigation3.ui/Scene.content.<get-content>|<get-content>(){}[0] + abstract fun <get-content>(): kotlin/Function2<androidx.compose.runtime/Composer, kotlin/Int, kotlin/Unit> // androidx.navigation3.ui/Scene.content.<get-content>|<get-content>(){}[0] abstract val entries // androidx.navigation3.ui/Scene.entries|{}entries[0] abstract fun <get-entries>(): kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>> // androidx.navigation3.ui/Scene.entries.<get-entries>|<get-entries>(){}[0] abstract val key // androidx.navigation3.ui/Scene.key|{}key[0] @@ -30,7 +30,7 @@ final class <#A: kotlin/Any> androidx.navigation3.ui/DialogSceneStrategy : androidx.navigation3.ui/SceneStrategy<#A> { // androidx.navigation3.ui/DialogSceneStrategy|null[0] constructor <init>() // androidx.navigation3.ui/DialogSceneStrategy.<init>|<init>(){}[0] - final fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>): androidx.navigation3.ui/Scene<#A>? // androidx.navigation3.ui/DialogSceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>){}[0] + final fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigation3.ui/Scene<#A>? // androidx.navigation3.ui/DialogSceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] final object Companion { // androidx.navigation3.ui/DialogSceneStrategy.Companion|null[0] final fun dialog(androidx.compose.ui.window/DialogProperties = ...): kotlin.collections/Map<kotlin/String, kotlin/Any> // androidx.navigation3.ui/DialogSceneStrategy.Companion.dialog|dialog(androidx.compose.ui.window.DialogProperties){}[0] @@ -40,7 +40,7 @@ final class <#A: kotlin/Any> androidx.navigation3.ui/SinglePaneSceneStrategy : androidx.navigation3.ui/SceneStrategy<#A> { // androidx.navigation3.ui/SinglePaneSceneStrategy|null[0] constructor <init>() // androidx.navigation3.ui/SinglePaneSceneStrategy.<init>|<init>(){}[0] - final fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>): androidx.navigation3.ui/Scene<#A> // androidx.navigation3.ui/SinglePaneSceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>){}[0] + final fun calculateScene(kotlin.collections/List<androidx.navigation3.runtime/NavEntry<#A>>, kotlin/Function1<kotlin/Int, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigation3.ui/Scene<#A> // androidx.navigation3.ui/SinglePaneSceneStrategy.calculateScene|calculateScene(kotlin.collections.List<androidx.navigation3.runtime.NavEntry<1:0>>;kotlin.Function1<kotlin.Int,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int){}[0] } final object androidx.navigation3.ui/NavDisplay { // androidx.navigation3.ui/NavDisplay|null[0] @@ -56,7 +56,19 @@ final fun <get-LocalEntriesToRenderInCurrentScene>(): androidx.compose.runtime/ProvidableCompositionLocal<kotlin.collections/Set<kotlin/Any>> // androidx.navigation3.ui/LocalEntriesToRenderInCurrentScene.<get-LocalEntriesToRenderInCurrentScene>|<get-LocalEntriesToRenderInCurrentScene>(){}[0] final val androidx.navigation3.ui/LocalNavAnimatedContentScope // androidx.navigation3.ui/LocalNavAnimatedContentScope|{}LocalNavAnimatedContentScope[0] final fun <get-LocalNavAnimatedContentScope>(): androidx.compose.runtime/ProvidableCompositionLocal<androidx.compose.animation/AnimatedContentScope> // androidx.navigation3.ui/LocalNavAnimatedContentScope.<get-LocalNavAnimatedContentScope>|<get-LocalNavAnimatedContentScope>(){}[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_DialogScene$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_DialogScene$stableprop|#static{}androidx_navigation3_ui_DialogScene$stableprop[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_DialogSceneStrategy$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_DialogSceneStrategy$stableprop|#static{}androidx_navigation3_ui_DialogSceneStrategy$stableprop[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop|#static{}androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_NavDisplay$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_NavDisplay$stableprop|#static{}androidx_navigation3_ui_NavDisplay$stableprop[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneScene$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneScene$stableprop|#static{}androidx_navigation3_ui_SinglePaneScene$stableprop[0] +final val androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop // androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop|#static{}androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop[0] -final fun <#A: kotlin/Any> androidx.navigation3.ui/NavDisplay(kotlin.collections/List<#A>, androidx.compose.ui/Modifier = ..., androidx.compose.ui/Alignment = ..., kotlin/Function1<kotlin/Int, kotlin/Unit> = ..., kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>> = ..., androidx.navigation3.ui/SceneStrategy<#A> = ..., androidx.compose.animation/SizeTransform? = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform> = ..., kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform> = ..., kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>>) // androidx.navigation3.ui/NavDisplay|NavDisplay(kotlin.collections.List<0:0>;androidx.compose.ui.Modifier;androidx.compose.ui.Alignment;kotlin.Function1<kotlin.Int,kotlin.Unit>;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>;androidx.navigation3.ui.SceneStrategy<0:0>;androidx.compose.animation.SizeTransform?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>;kotlin.Function1<0:0,androidx.navigation3.runtime.NavEntry<0:0>>){0§<kotlin.Any>}[0] +final fun <#A: kotlin/Any> androidx.navigation3.ui/NavDisplay(kotlin.collections/List<#A>, androidx.compose.ui/Modifier?, androidx.compose.ui/Alignment?, kotlin/Function1<kotlin/Int, kotlin/Unit>?, kotlin.collections/List<androidx.navigation3.runtime/NavEntryDecorator<*>>?, androidx.navigation3.ui/SceneStrategy<#A>?, androidx.compose.animation/SizeTransform?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform>?, kotlin/Function1<androidx.compose.animation/AnimatedContentTransitionScope<*>, androidx.compose.animation/ContentTransform>?, kotlin/Function1<#A, androidx.navigation3.runtime/NavEntry<#A>>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // androidx.navigation3.ui/NavDisplay|NavDisplay(kotlin.collections.List<0:0>;androidx.compose.ui.Modifier?;androidx.compose.ui.Alignment?;kotlin.Function1<kotlin.Int,kotlin.Unit>?;kotlin.collections.List<androidx.navigation3.runtime.NavEntryDecorator<*>>?;androidx.navigation3.ui.SceneStrategy<0:0>?;androidx.compose.animation.SizeTransform?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>?;kotlin.Function1<androidx.compose.animation.AnimatedContentTransitionScope<*>,androidx.compose.animation.ContentTransform>?;kotlin.Function1<0:0,androidx.navigation3.runtime.NavEntry<0:0>>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){0§<kotlin.Any>}[0] final fun androidx.navigation3.ui/SceneSetupNavEntryDecorator(): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.ui/SceneSetupNavEntryDecorator|SceneSetupNavEntryDecorator(){}[0] -final fun androidx.navigation3.ui/rememberSceneSetupNavEntryDecorator(): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.ui/rememberSceneSetupNavEntryDecorator|rememberSceneSetupNavEntryDecorator(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_DialogScene$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_DialogScene$stableprop_getter|androidx_navigation3_ui_DialogScene$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_DialogSceneStrategy$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_DialogSceneStrategy$stableprop_getter|androidx_navigation3_ui_DialogSceneStrategy$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop_getter|androidx_navigation3_ui_LocalNavigationEventDispatcherOwner$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_NavDisplay$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_NavDisplay$stableprop_getter|androidx_navigation3_ui_NavDisplay$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneScene$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneScene$stableprop_getter|androidx_navigation3_ui_SinglePaneScene$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop_getter(): kotlin/Int // androidx.navigation3.ui/androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop_getter|androidx_navigation3_ui_SinglePaneSceneStrategy$stableprop_getter(){}[0] +final fun androidx.navigation3.ui/rememberSceneSetupNavEntryDecorator(androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigation3.runtime/NavEntryDecorator<kotlin/Any> // androidx.navigation3.ui/rememberSceneSetupNavEntryDecorator|rememberSceneSetupNavEntryDecorator(androidx.compose.runtime.Composer?;kotlin.Int){}[0]
diff --git a/navigationevent/navigationevent-compose/bcv/native/current.txt b/navigationevent/navigationevent-compose/bcv/native/current.txt index c339a69..a38086d 100644 --- a/navigationevent/navigationevent-compose/bcv/native/current.txt +++ b/navigationevent/navigationevent-compose/bcv/native/current.txt
@@ -8,9 +8,12 @@ // Library unique name: <androidx.navigationevent:navigationevent-compose> final object androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner { // androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner|null[0] final val current // androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner.current|{}current[0] - final fun <get-current>(): androidx.navigationevent/NavigationEventDispatcherOwner? // androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner.current.<get-current>|<get-current>(){}[0] + final fun <get-current>(androidx.compose.runtime/Composer?, kotlin/Int): androidx.navigationevent/NavigationEventDispatcherOwner? // androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner.current.<get-current>|<get-current>(androidx.compose.runtime.Composer?;kotlin.Int){}[0] final fun provides(androidx.navigationevent/NavigationEventDispatcherOwner): androidx.compose.runtime/ProvidedValue<androidx.navigationevent/NavigationEventDispatcherOwner?> // androidx.navigationevent.compose/LocalNavigationEventDispatcherOwner.provides|provides(androidx.navigationevent.NavigationEventDispatcherOwner){}[0] } -final fun androidx.navigationevent.compose/NavigationEventHandler(kotlin/Function0<kotlin/Boolean> = ..., kotlin.coroutines/SuspendFunction1<kotlinx.coroutines.flow/Flow<androidx.navigationevent/NavigationEvent>, kotlin/Unit>) // androidx.navigationevent.compose/NavigationEventHandler|NavigationEventHandler(kotlin.Function0<kotlin.Boolean>;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.flow.Flow<androidx.navigationevent.NavigationEvent>,kotlin.Unit>){}[0] +final val androidx.navigationevent.compose/androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop // androidx.navigationevent.compose/androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop|#static{}androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop[0] + +final fun androidx.navigationevent.compose/NavigationEventHandler(kotlin/Function0<kotlin/Boolean>?, kotlin.coroutines/SuspendFunction1<kotlinx.coroutines.flow/Flow<androidx.navigationevent/NavigationEvent>, kotlin/Unit>, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // androidx.navigationevent.compose/NavigationEventHandler|NavigationEventHandler(kotlin.Function0<kotlin.Boolean>?;kotlin.coroutines.SuspendFunction1<kotlinx.coroutines.flow.Flow<androidx.navigationevent.NavigationEvent>,kotlin.Unit>;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun androidx.navigationevent.compose/androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop_getter(): kotlin/Int // androidx.navigationevent.compose/androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop_getter|androidx_navigationevent_compose_LocalNavigationEventDispatcherOwner$stableprop_getter(){}[0]